summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGravatar Sebastian Valle2016-12-11 14:45:35 -0500
committerGravatar GitHub2016-12-11 14:45:35 -0500
commit0f28ed9ce8bae510728e8651a81e240874022338 (patch)
tree2a3e94150578170c48c671322b3e4bca542cbfc3 /src
parentMerge pull request #2267 from JayFoxRox/fix-mingw-cc (diff)
parenttests: add missing libcore dependency after 75ee2f8c6702 (diff)
downloadyuzu-0f28ed9ce8bae510728e8651a81e240874022338.tar.gz
yuzu-0f28ed9ce8bae510728e8651a81e240874022338.tar.xz
yuzu-0f28ed9ce8bae510728e8651a81e240874022338.zip
Merge pull request #2275 from jbeich/pthread
Unbreak QT-only build after 75ee2f8c6702
Diffstat (limited to 'src')
-rw-r--r--src/tests/CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tests/CMakeLists.txt b/src/tests/CMakeLists.txt
index 89237e477..b47156ca4 100644
--- a/src/tests/CMakeLists.txt
+++ b/src/tests/CMakeLists.txt
@@ -13,6 +13,6 @@ include_directories(../../externals/catch/single_include/)
13 13
14add_executable(tests ${SRCS} ${HEADERS}) 14add_executable(tests ${SRCS} ${HEADERS})
15target_link_libraries(tests core video_core audio_core common) 15target_link_libraries(tests core video_core audio_core common)
16target_link_libraries(tests ${PLATFORM_LIBRARIES}) 16target_link_libraries(tests ${PLATFORM_LIBRARIES} Threads::Threads)
17 17
18add_test(NAME tests COMMAND $<TARGET_FILE:tests>) 18add_test(NAME tests COMMAND $<TARGET_FILE:tests>)