diff options
author | bunnei <bunneidev@gmail.com> | 2014-12-22 17:11:37 +0100 |
---|---|---|
committer | bunnei <bunneidev@gmail.com> | 2014-12-22 17:11:37 +0100 |
commit | 949d95659e019d2c1bb58327827e1a9fc39b28ee (patch) | |
tree | eca14a68ab0d253412689ec58f003c014e4d02ae /src/citra_qt | |
parent | Merge pull request #333 from lioncash/qops (diff) | |
parent | Build GLFW as a shared lib on Travis (diff) | |
download | yuzu-949d95659e019d2c1bb58327827e1a9fc39b28ee.tar yuzu-949d95659e019d2c1bb58327827e1a9fc39b28ee.tar.gz yuzu-949d95659e019d2c1bb58327827e1a9fc39b28ee.tar.bz2 yuzu-949d95659e019d2c1bb58327827e1a9fc39b28ee.tar.lz yuzu-949d95659e019d2c1bb58327827e1a9fc39b28ee.tar.xz yuzu-949d95659e019d2c1bb58327827e1a9fc39b28ee.tar.zst yuzu-949d95659e019d2c1bb58327827e1a9fc39b28ee.zip |
Diffstat (limited to 'src/citra_qt')
-rw-r--r-- | src/citra_qt/CMakeLists.txt | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/citra_qt/CMakeLists.txt b/src/citra_qt/CMakeLists.txt index 90e5c6aa6..54d0a1271 100644 --- a/src/citra_qt/CMakeLists.txt +++ b/src/citra_qt/CMakeLists.txt @@ -60,6 +60,10 @@ add_executable(citra-qt ${SRCS} ${HEADERS} ${UI_HDRS}) target_link_libraries(citra-qt core common video_core qhexedit) target_link_libraries(citra-qt ${OPENGL_gl_LIBRARY} ${CITRA_QT_LIBS}) +if (UNIX) + target_link_libraries(citra-qt -pthread) +endif() + if (APPLE) target_link_libraries(citra-qt iconv ${COREFOUNDATION_LIBRARY}) elseif (WIN32) |