Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2021-01-20 07:53:51 +0300
committerCampbell Barton <ideasman42@gmail.com>2021-01-20 08:03:57 +0300
commitd3fe320b8361b5714c7d36b793196f56dbdfab21 (patch)
treef358c6196d627a156b19417836164c36d8281bce /build_files/cmake/cmake_consistency_check_config.py
parent0706a756f9d7d9b5393e43c34a3b8327db8b1e11 (diff)
CMake: update checking utility to ignore nanovdb files
Diffstat (limited to 'build_files/cmake/cmake_consistency_check_config.py')
-rw-r--r--build_files/cmake/cmake_consistency_check_config.py14
1 files changed, 12 insertions, 2 deletions
diff --git a/build_files/cmake/cmake_consistency_check_config.py b/build_files/cmake/cmake_consistency_check_config.py
index c3a1036af42..8e626f8d056 100644
--- a/build_files/cmake/cmake_consistency_check_config.py
+++ b/build_files/cmake/cmake_consistency_check_config.py
@@ -34,8 +34,18 @@ IGNORE_SOURCE = (
# Ignore cmake file, path pairs.
IGNORE_SOURCE_MISSING = (
- # Use for cycles stand-alone.
- ("intern/cycles/util/CMakeLists.txt", "../../third_party/numaapi/include"),
+ ( # Use for cycles stand-alone.
+ "intern/cycles/util/CMakeLists.txt", (
+ "../../third_party/numaapi/include",
+ )),
+ ( # Use for `WITH_NANOVDB`.
+ "intern/cycles/kernel/CMakeLists.txt", (
+ "nanovdb/util/CSampleFromVoxels.h",
+ "nanovdb/util/SampleFromVoxels.h",
+ "nanovdb/NanoVDB.h",
+ "nanovdb/CNanoVDB.h",
+ ),
+ ),
)
IGNORE_CMAKE = (