File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -39,7 +39,7 @@ endif()
3939
4040target_include_directories (${CMAKE_PROJECT_NAME}
4141 PRIVATE ${OPENSSL_INCLUDE_DIR}
42- PRIVATE BEFORE ${AERON_INCLUDE_DIR} # make sure we include C warpper before deprecated C++ API
42+ PRIVATE ${AERON_INCLUDE_DIR}
4343)
4444target_link_libraries (${CMAKE_PROJECT_NAME}
4545 PRIVATE ${OPENSSL_SSL_LIBRARY}
@@ -61,7 +61,8 @@ if (CMAKE_CXX_COMPILER_ID MATCHES "MSVC")
6161 # C4251: Class member of an exported class is not marked dllexport.
6262 # This is triggered by std::string but we cannot modify STL.
6363 # C4100: Parameter is unused. We should fix this later.
64- target_compile_options (${CMAKE_PROJECT_NAME} PRIVATE /W3 /MP /wd4251 /wd4100)
64+ # C4996: The code uses a deprecated API. We should fix this later.
65+ target_compile_options (${CMAKE_PROJECT_NAME} PRIVATE /W3 /MP /wd4251 /wd4100 /wd4996)
6566else ()
6667 # overloaded-virtual: Derived class hides base class virtual functions
6768 # This is triggered by derived classes of Constant and we will fix this later
You can’t perform that action at this time.
0 commit comments