mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 20:47:45 +00:00
Tests+UserlandEmulator: Demonstrate missing backtraces
This commit is contained in:
parent
9058a8367f
commit
d56240759f
3 changed files with 109 additions and 0 deletions
8
Userland/Tests/UserspaceEmulator/CMakeLists.txt
Normal file
8
Userland/Tests/UserspaceEmulator/CMakeLists.txt
Normal file
|
@ -0,0 +1,8 @@
|
|||
file(GLOB CMD_SOURCES CONFIGURE_DEPENDS "*.cpp")
|
||||
|
||||
foreach(CMD_SRC ${CMD_SOURCES})
|
||||
get_filename_component(CMD_NAME ${CMD_SRC} NAME_WE)
|
||||
add_executable(${CMD_NAME} ${CMD_SRC})
|
||||
target_link_libraries(${CMD_NAME} LibCore)
|
||||
install(TARGETS ${CMD_NAME} RUNTIME DESTINATION usr/Tests/UserEmulator)
|
||||
endforeach()
|
Loading…
Add table
Add a link
Reference in a new issue