Skip to content
Snippets Groups Projects
Commit 173af823 authored by Dominic Kempf's avatar Dominic Kempf
Browse files

Issue a warning when the registry macros parameters cannot be parsed

This happens in the case of a typo, which is nasty to find.
parent 112b066c
No related branches found
No related tags found
No related merge requests found
......@@ -63,6 +63,10 @@ function(dune_register_package_flags)
set(MULTIARGS COMPILE_DEFINITIONS INCLUDE_DIRS LIBRARIES)
cmake_parse_arguments(REGISTRY "${OPTIONS}" "${SINGLEARGS}" "${MULTIARGS}" ${ARGN})
if(REGISTRY_UNPARSED_ARGUMENTS)
message(WARNING "Unrecognized arguments for dune_register_package_flags!")
endif()
if(REG_PREPEND)
get_property(GLOBAL PROPERTY ALL_PKG_INCS all_incs)
get_property(GLOBAL PROPERTY ALL_PKG_LIBS all_libs)
......
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