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 2e6f439 commit 0ebe309Copy full SHA for 0ebe309
CMakeLists.txt
@@ -167,8 +167,17 @@ elseif(SUNPRO)
167
168
endif()
169
170
+#
171
+# TODO: We should fix the warnings below and then also increase warning
172
+# level and fix remaining warnings. However, before this is done, we do
173
+# not show the warnings to not break our release builds which are done
174
+# in maintainer mode.
175
176
+
177
+set(SHOW_JDBC_WARNINGS OFF CACHE BOOL "Show compile warnings for legacy code")
178
+mark_as_advanced(SHOW_JDBC_WARNINGS)
179
-if(NOT MAINTAINER_MODE)
180
+if(NOT SHOW_JDBC_WARNINGS)
181
if(MSVC)
182
183
add_compile_options(
0 commit comments