summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGravatar Yuri Kunde Schlesner2017-05-27 22:46:59 -0700
committerGravatar Yuri Kunde Schlesner2017-05-27 22:46:59 -0700
commitcebdae6c92f56b4e56b4aedd5d65c7fff0c7e44f (patch)
tree132bb5aa5daaaeb5ec549e2f6a11a4e23a5f826c /src
parentCMake: Create INTERFACE targets for microprofile and nihstro (diff)
downloadyuzu-cebdae6c92f56b4e56b4aedd5d65c7fff0c7e44f.tar.gz
yuzu-cebdae6c92f56b4e56b4aedd5d65c7fff0c7e44f.tar.xz
yuzu-cebdae6c92f56b4e56b4aedd5d65c7fff0c7e44f.zip
CMake: Create an INTERFACE target for Catch
Diffstat (limited to 'src')
-rw-r--r--src/tests/CMakeLists.txt6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/tests/CMakeLists.txt b/src/tests/CMakeLists.txt
index 85f2f2985..00d7c636a 100644
--- a/src/tests/CMakeLists.txt
+++ b/src/tests/CMakeLists.txt
@@ -10,11 +10,9 @@ set(HEADERS
10 10
11create_directory_groups(${SRCS} ${HEADERS}) 11create_directory_groups(${SRCS} ${HEADERS})
12 12
13include_directories(../../externals/catch/single_include/)
14
15add_executable(tests ${SRCS} ${HEADERS}) 13add_executable(tests ${SRCS} ${HEADERS})
16target_link_libraries(tests PRIVATE common core) 14target_link_libraries(tests PRIVATE common core)
17target_link_libraries(tests PRIVATE glad) # To support linker work-around 15target_link_libraries(tests PRIVATE glad) # To support linker work-around
18target_link_libraries(tests PRIVATE ${PLATFORM_LIBRARIES} Threads::Threads) 16target_link_libraries(tests PRIVATE ${PLATFORM_LIBRARIES} catch-single-include Threads::Threads)
19 17
20add_test(NAME tests COMMAND $<TARGET_FILE:tests>) 18add_test(NAME tests COMMAND tests)