1
0

added pthread linking code to OSSupport

This commit is contained in:
Tycho Bickerstaff 2013-12-19 00:15:30 +00:00
parent 0a96bf1c03
commit e02fbd37ab

View File

@ -8,3 +8,7 @@ file(GLOB SOURCE
)
add_library(OSSupport ${SOURCE})
if(UNIX)
target_link_libraries(OSSupport pthread)
endif()