Work on removing pthreads references

This commit is contained in:
Deukhoofd 2022-02-05 17:36:50 +01:00
parent f82ebe19bd
commit c58eb2d831
Signed by: Deukhoofd
GPG Key ID: F63E044490819F6F
1 changed files with 2 additions and 6 deletions

View File

@ -167,16 +167,12 @@ if (LINK_STD_STATICALLY)
message(STATUS "Linking std libraries statically")
set(as_LINKS -static-libgcc -static-libstdc++ -Wl,-Bstatic -lstdc++)
if (MSVC)
set(as_LINKS "${as_LINKS} -Wl,-Bstatic,--whole-archive -lwinpthread -Wl,--no-whole-archive")
set(as_LINKS "${as_LINKS}")
else()
set(as_LINKS "${as_LINKS} -Wl,-Bdynamic -lpthread")
set(as_LINKS "${as_LINKS}")
endif(MSVC)
message(STATUS "Angelscript LINKS ${as_LINKS}")
target_link_libraries(${ANGELSCRIPT_LIBRARY_NAME} ${as_LINKS})
else()
set(THREADS_PREFER_PTHREAD_FLAG ON)
find_package(Threads REQUIRED)
target_link_libraries(${ANGELSCRIPT_LIBRARY_NAME} -lpthread)
endif()
set_target_properties(${ANGELSCRIPT_LIBRARY_NAME} PROPERTIES VERSION ${PROJECT_VERSION})