diff options
author | Sebastian Valle <subv2112@gmail.com> | 2016-12-11 20:45:35 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-12-11 20:45:35 +0100 |
commit | 0f28ed9ce8bae510728e8651a81e240874022338 (patch) | |
tree | 2a3e94150578170c48c671322b3e4bca542cbfc3 /src | |
parent | Merge pull request #2267 from JayFoxRox/fix-mingw-cc (diff) | |
parent | tests: add missing libcore dependency after 75ee2f8c6702 (diff) | |
download | yuzu-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.txt | 2 |
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>) |