userspace: Implement program launcher
This is kinda useless as I only have Terminal and test-window implemented. Also the code is really messy as I don't have GUI widgets.
This commit is contained in:
12
userspace/programs/ProgramLauncher/CMakeLists.txt
Normal file
12
userspace/programs/ProgramLauncher/CMakeLists.txt
Normal file
@@ -0,0 +1,12 @@
|
||||
set(SOURCES
|
||||
main.cpp
|
||||
)
|
||||
|
||||
add_executable(ProgramLauncher ${SOURCES})
|
||||
banan_link_library(ProgramLauncher ban)
|
||||
banan_link_library(ProgramLauncher libc)
|
||||
banan_link_library(ProgramLauncher libfont)
|
||||
banan_link_library(ProgramLauncher libgui)
|
||||
banan_link_library(ProgramLauncher libinput)
|
||||
|
||||
install(TARGETS ProgramLauncher OPTIONAL)
|
||||
Reference in New Issue
Block a user