[Usr] Add a test process to spawn from Teton.

This commit is contained in:
Drew Galbraith 2023-11-26 21:14:45 -08:00
parent 7c75b832b2
commit 4e25a7e3b9
5 changed files with 32 additions and 0 deletions

View file

@ -0,0 +1,21 @@
add_executable(testbed
test.cpp
)
target_include_directories(testbed
PRIVATE ${CMAKE_CURRENT_SOURCE_DIR})
target_link_libraries(testbed
mammoth
)
set(CMAKE_SHARED_LIBRARY_LINK_CXX_FLAGS "")
set_target_properties(testbed PROPERTIES
COMPILE_FLAGS "${CMAKE_CXX_FLAGS} ${BASE_COMPILE_FLAGS}"
LINK_FLAGS "${CMAKE_EXE_LINK_FLAGS} ${BASE_LINK_FLAGS}"
)
install(TARGETS testbed DESTINATION usr/bin)

7
usr/testbed/test.cpp Normal file
View file

@ -0,0 +1,7 @@
#include <mammoth/util/debug.h>
uint64_t main(uint64_t init_port_cap) {
dbgln("testbed");
return glcr::OK;
}