We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 268417d commit 4ccc595Copy full SHA for 4ccc595
cmake/BuildSettings.cmake
@@ -5,7 +5,8 @@ if(${MSVC})
5
set(CMAKE_EXE_LINKER_FLAGS_RELEASE "${CMAKE_EXE_LINKER_FLAGS_RELEASE} /debug")
6
elseif(${UNIX})
7
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11")
8
- if(NOT ${CYGWIN}) # Don't specify -pthread on Cygwin
+ if(${CYGWIN}) # Don't specify -pthread on Cygwin
9
+ else()
10
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -pthread")
11
endif()
12
set(CMAKE_C_FLAGS_RELEASE "${CMAKE_C_FLAGS_RELEASE} -g")
0 commit comments