summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGravatar MerryMage2016-05-19 18:54:50 +0100
committerGravatar MerryMage2016-05-19 19:28:08 +0100
commit87de1ca96810eace7c3609d5b6ab7bfc93976c44 (patch)
tree7ef368cbab4aa45e9d5e06910a3b740c13cc8a9a /src
parenttests: Infrastructure for unit tests (diff)
downloadyuzu-87de1ca96810eace7c3609d5b6ab7bfc93976c44.tar.gz
yuzu-87de1ca96810eace7c3609d5b6ab7bfc93976c44.tar.xz
yuzu-87de1ca96810eace7c3609d5b6ab7bfc93976c44.zip
Tests: Run tests on CI
Diffstat (limited to 'src')
-rw-r--r--src/tests/CMakeLists.txt2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/tests/CMakeLists.txt b/src/tests/CMakeLists.txt
index dc476616c..457c55571 100644
--- a/src/tests/CMakeLists.txt
+++ b/src/tests/CMakeLists.txt
@@ -12,3 +12,5 @@ include_directories(../../externals/catch/single_include/)
12add_executable(tests ${SRCS} ${HEADERS}) 12add_executable(tests ${SRCS} ${HEADERS})
13target_link_libraries(tests core video_core audio_core common) 13target_link_libraries(tests core video_core audio_core common)
14target_link_libraries(tests ${PLATFORM_LIBRARIES}) 14target_link_libraries(tests ${PLATFORM_LIBRARIES})
15
16add_test(NAME tests COMMAND $<TARGET_FILE:tests>)