summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorSebastian Valle <subv2112@gmail.com>2016-12-11 20:45:35 +0100
committerGitHub <noreply@github.com>2016-12-11 20:45:35 +0100
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
yuzu-0f28ed9ce8bae510728e8651a81e240874022338.tar.gz
yuzu-0f28ed9ce8bae510728e8651a81e240874022338.tar.bz2
yuzu-0f28ed9ce8bae510728e8651a81e240874022338.tar.lz
yuzu-0f28ed9ce8bae510728e8651a81e240874022338.tar.xz
yuzu-0f28ed9ce8bae510728e8651a81e240874022338.tar.zst
yuzu-0f28ed9ce8bae510728e8651a81e240874022338.zip
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/)
add_executable(tests ${SRCS} ${HEADERS})
target_link_libraries(tests core video_core audio_core common)
-target_link_libraries(tests ${PLATFORM_LIBRARIES})
+target_link_libraries(tests ${PLATFORM_LIBRARIES} Threads::Threads)
add_test(NAME tests COMMAND $<TARGET_FILE:tests>)