[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [34444] trunk/blender/build_files/cmake/ cmake_consistency_check.py: correction to own cmake error checking script.

Campbell Barton ideasman42 at gmail.com
Fri Jan 21 12:52:56 CET 2011


Revision: 34444
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=34444
Author:   campbellbarton
Date:     2011-01-21 11:52:56 +0000 (Fri, 21 Jan 2011)
Log Message:
-----------
correction to own cmake error checking script.

Modified Paths:
--------------
    trunk/blender/build_files/cmake/cmake_consistency_check.py

Modified: trunk/blender/build_files/cmake/cmake_consistency_check.py
===================================================================
--- trunk/blender/build_files/cmake/cmake_consistency_check.py	2011-01-21 10:49:39 UTC (rev 34443)
+++ trunk/blender/build_files/cmake/cmake_consistency_check.py	2011-01-21 11:52:56 UTC (rev 34444)
@@ -141,6 +141,9 @@
                             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))
 




More information about the Bf-blender-cvs mailing list