Commit acf8fc1f authored by Vladislav Vaintroub's avatar Vladislav Vaintroub

Fix cmake warning

CMP0075 Include file check macros honor CMAKE_REQUIRED_LIBRARIES
parent 0b7339eb
...@@ -132,9 +132,8 @@ IF(MSVC) ...@@ -132,9 +132,8 @@ IF(MSVC)
ENDIF() ENDIF()
# Always link with socket library # Always link with socket library
LINK_LIBRARIES(ws2_32) STRING(APPEND CMAKE_C_STANDARD_LIBRARIES " ws2_32.lib")
# ..also for tests STRING(APPEND CMAKE_CXX_STANDARD_LIBRARIES " ws2_32.lib")
SET(CMAKE_REQUIRED_LIBRARIES ws2_32)
# System checks # System checks
SET(SIGNAL_WITH_VIO_CLOSE 1) # Something that runtime team needs SET(SIGNAL_WITH_VIO_CLOSE 1) # Something that runtime team needs
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment