From 38d3c3961590f6155949895d62ed13f9bc05ad5a Mon Sep 17 00:00:00 2001 From: Roman Khlopkov <roman.khlopkov@demlabs.net> Date: Mon, 12 Feb 2024 09:39:14 +0300 Subject: [PATCH] [*] Warning fix --- core/CMakeLists.txt | 3 +++ 1 file changed, 3 insertions(+) diff --git a/core/CMakeLists.txt b/core/CMakeLists.txt index 2ed4b85f8..5d3ac5ed2 100755 --- a/core/CMakeLists.txt +++ b/core/CMakeLists.txt @@ -58,6 +58,9 @@ if(WIN32) src/win32/*.c ../3rdparty/strptime.c ) + + set_source_files_properties(../3rdparty/strptime PROPERTIES COMPILE_FLAGS -Wno-deprecated-declarations) + endif() add_library(${PROJECT_NAME} STATIC ${CORE_SRCS} ${CORE_HEADERS}) -- GitLab