summaryrefslogtreecommitdiff
path: root/Tests/UserspaceEmulator/CMakeLists.txt
blob: 621423ac136e2e778d44cd8a4f335b46c798a603 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
set(TEST_SOURCES
    test-run-ls.cpp
    ue-write-oob.cpp
)

# FIXME: These tests do not use LibTest
foreach(source IN LISTS TEST_SOURCES)
    get_filename_component(test_name "${source}" NAME_WE)
    add_executable("${test_name}" "${source}")
    target_link_libraries("${test_name}" LibCore)
    serenity_set_implicit_links("${test_name}")
    install(TARGETS "${test_name}" RUNTIME DESTINATION usr/Tests/UserEmulator)
endforeach()