Skip to content
Snippets Groups Projects
Commit b3f31188 authored by Simon Praetorius's avatar Simon Praetorius
Browse files

Remove the cmake variable DUNE_DEFAULT_LIBS

parent 9ef5d4d5
Branches
Tags
1 merge request!1009Remove the cmake variable DUNE_DEFAULT_LIBS
......@@ -2,6 +2,10 @@
- Add `pragma omp simd` annotations in the LoopSIMD class to improve compiler optimizations
## Build System
- Remove the variable `DUNE_DEFAULT_LIBS`
# Release 2.8
- Set minimal required CMake version in cmake to >= 3.13.
......
......@@ -618,7 +618,6 @@ macro(dune_process_dependency_macros)
if(${_mod}_LIBRARIES)
message(STATUS "Setting ${_mod}_LIBRARIES=${${_mod}_LIBRARIES}")
foreach(_lib ${${_mod}_LIBRARIES})
list(INSERT DUNE_DEFAULT_LIBS 0 "${_lib}")
list(INSERT DUNE_LIBS 0 "${_lib}")
endforeach()
endif()
......@@ -953,7 +952,7 @@ endif()
endmacro(finalize_dune_project)
macro(target_link_dune_default_libraries _target)
foreach(_lib ${DUNE_DEFAULT_LIBS})
foreach(_lib ${DUNE_LIBS})
target_link_libraries(${_target} PUBLIC ${_lib})
endforeach()
endmacro(target_link_dune_default_libraries)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment