From d7ad14ae2088789a853d36fb3a465a920c0116ee Mon Sep 17 00:00:00 2001 From: Johannes Ekberg Date: Thu, 25 Dec 2014 11:49:00 +0100 Subject: Use -pthread where and only where needed Passing -pthread to GCC as a flag makes it both link to libpthread, and make C standard library routines reentrant. This makes the additional explicit links unnecessary. Additionally, on OSX, this is the default behavior, and clang will print a message about it being unused if it's present there. --- src/citra_qt/CMakeLists.txt | 4 ---- 1 file changed, 4 deletions(-) (limited to 'src/citra_qt/CMakeLists.txt') diff --git a/src/citra_qt/CMakeLists.txt b/src/citra_qt/CMakeLists.txt index 420bede1..bbc521f8 100644 --- a/src/citra_qt/CMakeLists.txt +++ b/src/citra_qt/CMakeLists.txt @@ -62,8 +62,4 @@ target_link_libraries(citra-qt core common video_core qhexedit) target_link_libraries(citra-qt ${OPENGL_gl_LIBRARY} ${CITRA_QT_LIBS}) target_link_libraries(citra-qt ${PLATFORM_LIBRARIES}) -if (UNIX) - target_link_libraries(citra-qt -pthread) -endif() - #install(TARGETS citra-qt RUNTIME DESTINATION ${bindir}) -- cgit v1.2.3