apio
140910763e
All checks were successful
Build and test / build (push) Successful in 1m56s
Why are command-line utilities stored in "apps"? And why are apps like "editor" or "terminal" top-level directories? Command-line utilities now go in "utils". GUI stuff now goes in "gui". This includes: libui -> gui/libui, wind -> gui/wind, GUI apps -> gui/apps, editor&terminal -> gui/apps... System services go in "system".
13 lines
405 B
CMake
13 lines
405 B
CMake
set(SOURCES
|
|
main.cpp
|
|
EditorWidget.h
|
|
EditorWidget.cpp
|
|
)
|
|
|
|
add_executable(editor ${SOURCES})
|
|
target_compile_options(editor PRIVATE -Os ${COMMON_FLAGS} -Wno-write-strings)
|
|
add_dependencies(editor libc)
|
|
target_include_directories(editor PRIVATE ${LUNA_BASE}/usr/include ${CMAKE_CURRENT_LIST_DIR})
|
|
target_link_libraries(editor PRIVATE os ui)
|
|
install(TARGETS editor DESTINATION ${LUNA_BASE}/usr/bin)
|