diff options
| author | 2016-12-11 14:45:35 -0500 | |
|---|---|---|
| committer | 2016-12-11 14:45:35 -0500 | |
| 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.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.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/) | |||
| 13 | 13 | ||
| 14 | add_executable(tests ${SRCS} ${HEADERS}) | 14 | add_executable(tests ${SRCS} ${HEADERS}) |
| 15 | target_link_libraries(tests core video_core audio_core common) | 15 | target_link_libraries(tests core video_core audio_core common) |
| 16 | target_link_libraries(tests ${PLATFORM_LIBRARIES}) | 16 | target_link_libraries(tests ${PLATFORM_LIBRARIES} Threads::Threads) |
| 17 | 17 | ||
| 18 | add_test(NAME tests COMMAND $<TARGET_FILE:tests>) | 18 | add_test(NAME tests COMMAND $<TARGET_FILE:tests>) |