diff options
author | bunnei <bunneidev@gmail.com> | 2015-01-10 08:03:07 +0100 |
---|---|---|
committer | bunnei <bunneidev@gmail.com> | 2015-01-10 08:03:07 +0100 |
commit | e7d21188588266cc6846f73a2f20b4a6aea6d750 (patch) | |
tree | ba24bb1c44b9aa926563cd9f39c7495bc2a52858 /src/citra_qt | |
parent | Merge pull request #454 from chinhodado/patch-1 (diff) | |
parent | Looks like that might be needed on OSX after all (diff) | |
download | yuzu-e7d21188588266cc6846f73a2f20b4a6aea6d750.tar yuzu-e7d21188588266cc6846f73a2f20b4a6aea6d750.tar.gz yuzu-e7d21188588266cc6846f73a2f20b4a6aea6d750.tar.bz2 yuzu-e7d21188588266cc6846f73a2f20b4a6aea6d750.tar.lz yuzu-e7d21188588266cc6846f73a2f20b4a6aea6d750.tar.xz yuzu-e7d21188588266cc6846f73a2f20b4a6aea6d750.tar.zst yuzu-e7d21188588266cc6846f73a2f20b4a6aea6d750.zip |
Diffstat (limited to 'src/citra_qt')
-rw-r--r-- | src/citra_qt/CMakeLists.txt | 13 |
1 files changed, 1 insertions, 12 deletions
diff --git a/src/citra_qt/CMakeLists.txt b/src/citra_qt/CMakeLists.txt index a0ba252b3..bbc521f8a 100644 --- a/src/citra_qt/CMakeLists.txt +++ b/src/citra_qt/CMakeLists.txt @@ -60,17 +60,6 @@ endif() 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) - target_link_libraries(citra-qt winmm wsock32 ws2_32) -else() # Unix - target_link_libraries(citra-qt rt) -endif() +target_link_libraries(citra-qt ${PLATFORM_LIBRARIES}) #install(TARGETS citra-qt RUNTIME DESTINATION ${bindir}) |