BuildSystem: Cleanup userspace directory layout
userspace programs are now in userspace/programs userspace tests are now in userspace/tests This makes listing userspace projects much cleaner. Libraries were already separated to their own directory, so other programs should also.
This commit is contained in:
11
userspace/tests/test-window/CMakeLists.txt
Normal file
11
userspace/tests/test-window/CMakeLists.txt
Normal file
@@ -0,0 +1,11 @@
|
||||
set(SOURCES
|
||||
main.cpp
|
||||
)
|
||||
|
||||
add_executable(test-window ${SOURCES})
|
||||
banan_include_headers(test-window ban)
|
||||
banan_include_headers(test-window libinput)
|
||||
banan_link_library(test-window libc)
|
||||
banan_link_library(test-window libgui)
|
||||
|
||||
install(TARGETS test-window OPTIONAL)
|
||||
Reference in New Issue
Block a user