Remove last remnants of TLS

This commit is contained in:
Andrew Nelless
2017-11-26 21:44:26 +00:00
parent 75b2cd0b41
commit e21c41ba99
12 changed files with 9 additions and 122 deletions

View File

@@ -15,7 +15,7 @@
add_executable(synergy-core main.cpp)
target_link_libraries(synergy-core
arch base client common io mt net ipc platform server core ${libs} ${OPENSSL_LIBS})
arch base client common io mt net ipc platform server core ${libs})
if (SYNERGY_CORE_INSTALL)
if (${CMAKE_SYSTEM_NAME} MATCHES "Darwin")

View File

@@ -39,4 +39,4 @@ endif()
add_executable(synergyc ${sources})
target_link_libraries(synergyc
arch base client common io mt net ipc platform server core ${libs} ${OPENSSL_LIBS})
arch base client common io mt net ipc platform server core ${libs})

View File

@@ -36,4 +36,4 @@ endif()
add_executable(synergys ${sources})
target_link_libraries(synergys
arch base client common io mt net ipc platform server core ${libs} ${OPENSSL_LIBS})
arch base client common io mt net ipc platform server core ${libs})

View File

@@ -24,5 +24,5 @@ endif()
add_library(net STATIC ${sources})
if (UNIX)
target_link_libraries(net mt io ${OPENSSL_LIBS})
target_link_libraries(net mt io)
endif()

View File

@@ -68,4 +68,4 @@ endif()
add_executable(integtests ${sources})
target_link_libraries(integtests
arch base client common io ipc mt net platform server core gtest gmock ${libs} ${OPENSSL_LIBS})
arch base client common io ipc mt net platform server core gtest gmock ${libs})

View File

@@ -68,4 +68,4 @@ endif()
add_executable(unittests ${sources})
target_link_libraries(unittests
arch base client server common io net platform server core mt ipc gtest gmock shared ${libs} ${OPENSSL_LIBS})
arch base client server common io net platform server core mt ipc gtest gmock shared ${libs})