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>2011-01-21 14:52:56 +0300
committerCampbell Barton <ideasman42@gmail.com>2011-01-21 14:52:56 +0300
commitf6d54bd1eed7a6d6382d237b7d2291c4ba495246 (patch)
tree535ee47c7e6b938812c5fad9abf687aaf42f4c0a /build_files/cmake/cmake_consistency_check.py
parenta5d49226396de30e4cba97f37650e3a82c0a9769 (diff)
correction to own cmake error checking script.
Diffstat (limited to 'build_files/cmake/cmake_consistency_check.py')
-rw-r--r--build_files/cmake/cmake_consistency_check.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/build_files/cmake/cmake_consistency_check.py b/build_files/cmake/cmake_consistency_check.py
index 68b5fc0bcce..7a3ac9eaa79 100644
--- a/build_files/cmake/cmake_consistency_check.py
+++ b/build_files/cmake/cmake_consistency_check.py
@@ -141,6 +141,9 @@ def cmake_get_src(f):
sources_h.append(new_file)
elif is_c(new_file):
sources_c.append(new_file)
+ elif l in ("PARENT_SCOPE", ):
+ # cmake var, ignore
+ pass
else:
raise Exception("unknown file type - not c or h %s -> %s" % (f, new_file))