22 lines
526 B
CMake
22 lines
526 B
CMake
set(SOURCES
|
|
main.cpp
|
|
Screen.h
|
|
Screen.cpp
|
|
Mouse.h
|
|
Mouse.cpp
|
|
Window.h
|
|
Window.cpp
|
|
IPC.cpp
|
|
IPC.h
|
|
Keyboard.cpp
|
|
Keyboard.h
|
|
Client.h
|
|
)
|
|
|
|
add_executable(wind ${SOURCES})
|
|
target_compile_options(wind PRIVATE -Os ${COMMON_FLAGS} -Wno-write-strings -fno-threadsafe-statics)
|
|
add_dependencies(wind libc)
|
|
target_include_directories(wind PRIVATE ${LUNA_BASE}/usr/include ${CMAKE_CURRENT_LIST_DIR})
|
|
target_link_libraries(wind PRIVATE os ui)
|
|
install(TARGETS wind DESTINATION ${LUNA_BASE}/usr/bin)
|