From c1d01266bfe4adfaa2df6e6713904d65b3d3b5b3 Mon Sep 17 00:00:00 2001 From: Ansgar Burchardt <Ansgar.Burchardt@tu-dresden.de> Date: Wed, 30 Mar 2022 11:38:13 +0200 Subject: [PATCH] cmake: add cmake/modules subdirectory --- CMakeLists.txt | 1 + cmake/CMakeLists.txt | 1 + 2 files changed, 2 insertions(+) create mode 100644 cmake/CMakeLists.txt diff --git a/CMakeLists.txt b/CMakeLists.txt index 357a711e..16f9c564 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -11,6 +11,7 @@ include(DuneMacros) dune_project() +add_subdirectory("cmake") add_subdirectory("doc") add_subdirectory("dune") diff --git a/cmake/CMakeLists.txt b/cmake/CMakeLists.txt new file mode 100644 index 00000000..8e2019b6 --- /dev/null +++ b/cmake/CMakeLists.txt @@ -0,0 +1 @@ +add_subdirectory(modules) -- GitLab