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 51ad679 commit 41a2bc5Copy full SHA for 41a2bc5
CMakeLists.txt
@@ -15,7 +15,7 @@ set(CMAKE_CXX_STANDARD 11)
15
if(NOT BUILD_COMPILER)
16
# Set complier identification
17
SET(BUILD_COMPILER "${CMAKE_CXX_COMPILER_ID} ${CMAKE_CXX_COMPILER_VERSION}" )
18
- MESSAGE( STATUS "C Compiler: " ${BUILD_COMPILER} )
+ MESSAGE( STATUS "C++ compiler: " ${BUILD_COMPILER} )
19
endif()
20
21
# VERSION_INFO is defined by setup.py and passed into the C++
@@ -46,7 +46,7 @@ endif()
46
47
# Setting build type to "debug" add only -g
48
if(CMAKE_BUILD_TYPE STREQUAL "DEBUG")
49
- set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -DDEBUG")
+ set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -DDEBUG")
50
51
52
# Set C++ flags
0 commit comments