summaryrefslogtreecommitdiffstats
path: root/CMakeScripts/cmake_consistency_check_config.py
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2011-06-22 15:24:29 +0000
committerCampbell Barton <ideasman42@gmail.com>2011-06-22 15:24:29 +0000
commit0241be87dacf34b304743e2cd0aa30444cd407cc (patch)
tree14f2387bc1e86f856206279d41fd9f105c949c83 /CMakeScripts/cmake_consistency_check_config.py
parentget cmake working again. (diff)
downloadinkscape-0241be87dacf34b304743e2cd0aa30444cd407cc.tar.gz
inkscape-0241be87dacf34b304743e2cd0aa30444cd407cc.zip
update cmake checker and split out config
(bzr r10335)
Diffstat (limited to 'CMakeScripts/cmake_consistency_check_config.py')
-rw-r--r--CMakeScripts/cmake_consistency_check_config.py66
1 files changed, 66 insertions, 0 deletions
diff --git a/CMakeScripts/cmake_consistency_check_config.py b/CMakeScripts/cmake_consistency_check_config.py
new file mode 100644
index 000000000..e7c4508ef
--- /dev/null
+++ b/CMakeScripts/cmake_consistency_check_config.py
@@ -0,0 +1,66 @@
+import os
+
+IGNORE = (
+ # dirs
+ "/cxxtest/",
+ "/dom/work/",
+ "/extension/dbus/",
+ "/pedro/",
+ "/src/extension/dxf2svg/",
+
+ # files
+ "buildtool.cpp",
+ "jabber_whiteboard/node-tracker.cpp",
+ "jabber_whiteboard/node-utilities.cpp",
+ "packaging/macosx/ScriptExec/main.c",
+ "share/ui/keybindings.rc",
+ "src/2geom/conic_section_clipper_impl.cpp",
+ "src/2geom/conicsec.cpp",
+ "src/2geom/recursive-bezier-intersection.cpp",
+ "src/deptool.cpp",
+ "src/display/nr-filter-skeleton.cpp",
+ "src/display/testnr.cpp",
+ "src/dom/io/httpclient.cpp",
+ "src/dom/odf/SvgOdg.cpp",
+ "src/dom/xmlwriter.cpp",
+ "src/inkview.cpp",
+ "src/inkview.rc",
+ "src/io/streamtest.cpp",
+ "src/libcola/cycle_detector.cpp",
+ "src/libnr/nr-compose-reference.cpp",
+ "src/libnr/testnr.cp",
+ "src/live_effects/lpe-skeleton.cpp",
+ "src/sp-animation.cpp",
+ "src/sp-skeleton.cpp",
+ "src/svg/test-stubs.cpp",
+ "src/ui/dialog/session-player.cpp",
+ "src/ui/dialog/whiteboard-connect.cpp",
+ "src/ui/dialog/whiteboard-sharewithchat.cpp",
+ "src/ui/dialog/whiteboard-sharewithuser.cpp",
+ "src/winconsole.cpp",
+
+ # header files
+ "share/filters/filters.svg.h",
+ "share/palettes/palettes.h",
+ "src/inkscape/share/palettes/palettes.h",
+ "src/inkscape/share/patterns/patterns.svg.h",
+ "src/inkscape/src/libcola/cycle_detector.h",
+ "src/inkscape/src/libnr/in-svg-plane-test.h",
+ "src/inkscape/src/libnr/nr-point-fns-test.h",
+ "src/inkscape/src/libnr/nr-translate-test.h",
+ "src/inkscape/src/libnr/nr-types-test.h",
+ "src/inkscape/src/sp-skeleton.h",
+ "src/inkscape/src/svg/test-stubs.h",
+
+ # generated files, created by an in-source build
+ "CMakeFiles/CompilerIdC/CMakeCCompilerId.c",
+ "CMakeFiles/CompilerIdCXX/CMakeCXXCompilerId.cpp",
+ "src/helper/sp-marshal.cpp",
+ "src/helper/sp-marshal.h",
+ "src/inkscape-version.cpp",
+ "config.h",
+ )
+
+UTF8_CHECK = False
+
+SOURCE_DIR = os.path.normpath(os.path.abspath(os.path.normpath(os.path.join(os.path.dirname(__file__), ".."))))