aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/citra
diff options
context:
space:
mode:
authorGravatar Johannes Ekberg <uppfinnarn@gmail.com>2014-12-25 11:49:00 +0100
committerGravatar Johannes Ekberg <uppfinnarn@gmail.com>2015-01-09 15:50:46 +0100
commitd7ad14ae2088789a853d36fb3a465a920c0116ee (patch)
tree0fcbc50097f50ac5e460467a3ea89cdf5fc2e91c /src/citra
parent13518198109fad9f19cc81aa1d06c3d85d1126f5 (diff)
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.
Diffstat (limited to 'src/citra')
-rw-r--r--src/citra/CMakeLists.txt4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/citra/CMakeLists.txt b/src/citra/CMakeLists.txt
index 7f3ab3e0..713f4919 100644
--- a/src/citra/CMakeLists.txt
+++ b/src/citra/CMakeLists.txt
@@ -18,8 +18,4 @@ target_link_libraries(citra core common video_core)
target_link_libraries(citra ${GLFW_LIBRARIES} ${OPENGL_gl_LIBRARY} inih)
target_link_libraries(citra ${PLATFORM_LIBRARIES})
-if (UNIX)
- target_link_libraries(citra -pthread)
-endif()
-
#install(TARGETS citra RUNTIME DESTINATION ${bindir})