Merge pull request #275 from yuriks/cmake-clean

Clean up CMake library specification
This commit is contained in:
bunnei 2014-12-22 11:11:37 -05:00
commit 949d95659e
4 changed files with 16 additions and 13 deletions

View file

@ -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)