diff options
| author | 2017-05-27 22:46:59 -0700 | |
|---|---|---|
| committer | 2017-05-27 22:46:59 -0700 | |
| commit | cebdae6c92f56b4e56b4aedd5d65c7fff0c7e44f (patch) | |
| tree | 132bb5aa5daaaeb5ec549e2f6a11a4e23a5f826c /src | |
| parent | CMake: Create INTERFACE targets for microprofile and nihstro (diff) | |
| download | yuzu-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.txt | 6 |
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 | ||
| 11 | create_directory_groups(${SRCS} ${HEADERS}) | 11 | create_directory_groups(${SRCS} ${HEADERS}) |
| 12 | 12 | ||
| 13 | include_directories(../../externals/catch/single_include/) | ||
| 14 | |||
| 15 | add_executable(tests ${SRCS} ${HEADERS}) | 13 | add_executable(tests ${SRCS} ${HEADERS}) |
| 16 | target_link_libraries(tests PRIVATE common core) | 14 | target_link_libraries(tests PRIVATE common core) |
| 17 | target_link_libraries(tests PRIVATE glad) # To support linker work-around | 15 | target_link_libraries(tests PRIVATE glad) # To support linker work-around |
| 18 | target_link_libraries(tests PRIVATE ${PLATFORM_LIBRARIES} Threads::Threads) | 16 | target_link_libraries(tests PRIVATE ${PLATFORM_LIBRARIES} catch-single-include Threads::Threads) |
| 19 | 17 | ||
| 20 | add_test(NAME tests COMMAND $<TARGET_FILE:tests>) | 18 | add_test(NAME tests COMMAND tests) |