Skip to content
Snippets Groups Projects
Commit 432bee74 authored by Santiago Ospina De Los Ríos's avatar Santiago Ospina De Los Ríos
Browse files

Allow deprecation warning switch on multiple calls of dune_project()

parent 7487b849
No related branches found
No related tags found
1 merge request!1391Draft: CMake super-builds
Pipeline #72805 waiting for manual action
......@@ -118,6 +118,7 @@ macro(dune_project)
# this is only needed if config files of upstream modules were generated with dune-common < 2.10
# this behavior will be unsupported when dune-common == 2.12
set_property(GLOBAL PROPERTY DUNE_DISABLE_ALL_DEPENDENCIES_DEPRECATION_WARNING ON)
# creates dependency tree, finds all the modules and creates ALL_DEPENDENCIES variable
dune_create_dependency_tree(SKIP_CMAKE_PATH_SETUP)
......@@ -141,7 +142,7 @@ macro(dune_project)
endif()
endforeach()
endif()
variable_watch(ALL_DEPENDENCIES dune_deprecate_variable)
set_property(GLOBAL PROPERTY DUNE_DISABLE_ALL_DEPENDENCIES_DEPRECATION_WARNING OFF)
else()
message(AUTHOR_WARNING "This needs to be removed!")
endif()
......@@ -340,7 +341,7 @@ endif()")
# DUNE_INSTALL_LIBDIR is deprecated and used here to generate a proper deprecation warnings.
# After Dune 2.10 CMAKE_INSTALL_LIBDIR has to be used, DUNE_INSTALL_LIBDIR will be removed.
if(DEFINED DUNE_INSTALL_LIBDIR)
message(DEPRECATED "DUNE_INSTALL_LIBDIR is deprecated, use CMAKE_INSTALL_LIBDIR instead")
message(DEPRECATION "DUNE_INSTALL_LIBDIR is deprecated, use CMAKE_INSTALL_LIBDIR instead")
else()
set(DUNE_INSTALL_LIBDIR ${CMAKE_INSTALL_LIBDIR})
endif()
......
......@@ -89,3 +89,20 @@ function(dune_deprecate_variable _variable _access)
message(DEPRECATION "Variable ${_variable} is deprecated")
endif()
endfunction()
### Internal handling of ALL_DEPENDENCIES deprecation. Remove after Dune 2.12
define_property(GLOBAL PROPERTY DUNE_DISABLE_ALL_DEPENDENCIES_DEPRECATION_WARNING
BRIEF_DOCS "Internal DUNE warning handler of ALL_DEPENDENCIES. DO NOT EDIT!"
FULL_DOCS "Internal DUNE warning handler of ALL_DEPENDENCIES. DO NOT EDIT!")
set_property(GLOBAL PROPERTY DUNE_DISABLE_ALL_DEPENDENCIES_DEPRECATION_WARNING OFF)
function(dune_deprecate_ALL_DEPENDENCIES _variable _access)
get_property(_prop GLOBAL PROPERTY DUNE_DISABLE_ALL_DEPENDENCIES_DEPRECATION_WARNING)
if(NOT _prop)
dune_deprecate_variable(${_variable} ${_access})
endif()
endfunction()
variable_watch(ALL_DEPENDENCIES dune_deprecate_ALL_DEPENDENCIES)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment