We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6487135 commit 98a5490Copy full SHA for 98a5490
CMakeLists.txt
@@ -6,6 +6,11 @@ cmake_minimum_required(VERSION 3.22)
6
# src/CMakeLists.template.cmake
7
cmake_policy(VERSION 3.22...3.31)
8
9
+# We aren't using C++20 modules, so disable scanning for them to avoid
10
+# clang-scan-deps-notfound errors.
11
+# See also https://discourse.cmake.org/t/cmake-3-28-cmake-cxx-compiler-clang-scan-deps-notfound-not-found/9244/3
12
+set(CMAKE_CXX_SCAN_FOR_MODULES OFF)
13
+
14
project(amici)
15
16
# misc options
0 commit comments