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 6fd4f46 commit 25c8a5bCopy full SHA for 25c8a5b
src/CMakeLists.txt
@@ -85,6 +85,10 @@ list(APPEND osm2pgsql_lib_SOURCES ${PROJECT_BINARY_DIR}/src/version.cpp)
85
86
if (HAVE_PROJ4)
87
list(APPEND osm2pgsql_lib_SOURCES reprojection-generic-proj4.cpp)
88
+ if (NOT MSVC)
89
+ set_source_files_properties(reprojection-generic-proj4.cpp
90
+ PROPERTIES COMPILE_FLAGS -Wno-deprecated-declarations)
91
+ endif()
92
else()
93
list(APPEND osm2pgsql_lib_SOURCES reprojection-generic-none.cpp)
94
endif()
0 commit comments