2019-08-09 00:04:39 +08:00
|
|
|
diff --git a/cmake/CMakeLists.txt b/cmake/CMakeLists.txt
|
2023-10-03 11:44:28 +08:00
|
|
|
index ae859a3..77a936a 100644
|
2019-08-09 00:04:39 +08:00
|
|
|
--- a/cmake/CMakeLists.txt
|
|
|
|
+++ b/cmake/CMakeLists.txt
|
2023-10-03 11:44:28 +08:00
|
|
|
@@ -23,6 +23,11 @@ set(${PROJECT_NAME}_ONLY_LIBRARY OFF CACHE BOOL
|
|
|
|
set(${PROJECT_NAME}_CXX_BINDING OFF CACHE BOOL
|
|
|
|
"Set to ON to install header files with c++ wrappers (default is OFF)")
|
|
|
|
|
2019-08-09 00:04:39 +08:00
|
|
|
+# MSVC deprecated warnings (C4996,strdup, ...)
|
|
|
|
+if(MSVC)
|
|
|
|
+ add_definitions(-D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -D_SCL_SECURE_NO_WARNINGS)
|
|
|
|
+endif()
|
|
|
|
+
|
|
|
|
# Check headers
|
|
|
|
include(CheckIncludeFile)
|
|
|
|
check_include_file(libgen.h HAVE_LIBGEN_H)
|