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:
2025-05-06 00:41:22 +03:00
parent 57f6f50939
commit 09745a7835
3 changed files with 357 additions and 0 deletions

View 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)