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

Fix line break in deprecation warning

parent 28627eba
No related branches found
No related tags found
1 merge request!1247Export targets under custom namespaces (Dune:: by default)
......@@ -187,8 +187,9 @@ function(dune_add_library_normal _name)
message(DEPRECATION
"The function dune_add_library(<lib> ...) now requires to provide NO_EXPORT or EXPORT_NAME. "
"We recommend to choose an export name with a camel title case matching your library name "
"(e.g., Common, ISTL, and MultiDomainGrid will be exported as Dune::Common, Dune::ISTL, and Dune::MultiDomainGrid) "
" * Calls to `dune_add_library(<lib> ...)` without export specification will be supported until Dune 2.11"
"(e.g., Common, ISTL, and MultiDomainGrid will be exported as Dune::Common, Dune::ISTL, and Dune::MultiDomainGrid)\n"
" * Calls to `dune_add_library(<lib> ...)` without export specification will be supported until Dune 2.11\n"
" * Consumption of unscoped targets `<lib>` will be supported until Dune 2.12")
set(ARG_EXPORT_NAME ${_name})
endif()
......@@ -245,8 +246,8 @@ function(dune_add_library_interface _name)
message(DEPRECATION
"The function dune_add_library(<lib> ...) now requires to provide NO_EXPORT or EXPORT_NAME. "
"We recommend to choose an export name with a camel title case matching your library name "
"(e.g., Common, ISTL, and MultiDomainGrid will be exported as Dune::Common, Dune::ISTL, and Dune::MultiDomainGrid) "
" * Calls to `dune_add_library(<lib> ...)` without export specification will be supported until Dune 2.11"
"(e.g., Common, ISTL, and MultiDomainGrid will be exported as Dune::Common, Dune::ISTL, and Dune::MultiDomainGrid)\n"
" * Calls to `dune_add_library(<lib> ...)` without export specification will be supported until Dune 2.11\n"
" * Consumption of unscoped targets `<lib>` will be supported until Dune 2.12")
set(ARG_EXPORT_NAME ${_name})
endif()
......
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