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:
10
userspace/programs/http-server/CMakeLists.txt
Normal file
10
userspace/programs/http-server/CMakeLists.txt
Normal file
@@ -0,0 +1,10 @@
|
||||
set(SOURCES
|
||||
main.cpp
|
||||
HTTPServer.cpp
|
||||
)
|
||||
|
||||
add_executable(http-server ${SOURCES})
|
||||
banan_link_library(http-server ban)
|
||||
banan_link_library(http-server libc)
|
||||
|
||||
install(TARGETS http-server OPTIONAL)
|
||||
Reference in New Issue
Block a user