Skip to content

Commit 627e352

Browse files
committed
ADD: disabled warnings for c++ C004
1 parent 9118fe9 commit 627e352

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

CMakeLists.txt

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,11 @@ list(APPEND CMAKE_MODULE_PATH ${PROJECT_SOURCE_DIR}/cmake)
77
include(external_tools)
88
include(options)
99

10+
# disabling warnings
11+
if (MSVC)
12+
add_compile_options(/wd4003)
13+
endif()
14+
1015
# check that the -DCMAKE_BUILD_TYPE is set
1116
if(NOT CMAKE_BUILD_TYPE)
1217
message(STATUS "Setting build type to 'Release' as none was specified.")

0 commit comments

Comments
 (0)