summaryrefslogtreecommitdiff
path: root/Tests/UserspaceEmulator/CMakeLists.txt
blob: 875cbcd9a9c89a1994b0f1aa76c3ca17c9e7dab2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
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)
    install(TARGETS "${test_name}" RUNTIME DESTINATION usr/Tests/UserEmulator)
endforeach()