diff options
author | Sebastian Valle <subv2112@gmail.com> | 2016-12-11 14:45:35 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-12-11 14:45:35 -0500 |
commit | 0f28ed9ce8bae510728e8651a81e240874022338 (patch) | |
tree | 2a3e94150578170c48c671322b3e4bca542cbfc3 /src | |
parent | 2589c30cbee4e90b717cb8f42e1f25e2eabc119f (diff) | |
parent | 774d3112af890228acff81aae3b10c5b32046868 (diff) |
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/) 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>) |