summaryrefslogtreecommitdiff
path: root/build/gen-file-list-gtk.py
diff options
context:
space:
mode:
authorChun-wei Fan <fanchunwei@src.gnome.org>2014-07-16 18:04:38 +0800
committerChun-wei Fan <fanchunwei@src.gnome.org>2014-07-16 18:04:38 +0800
commit283a274d32d5c07c157b660cd69d7be29b1d9014 (patch)
tree75733ca926ce20ef7016a0f9640deed5d745f6a8 /build/gen-file-list-gtk.py
parent64e5d6ee3aa57d0a03b7126710f81100b90faa4e (diff)
downloadgtk+-283a274d32d5c07c157b660cd69d7be29b1d9014.tar.gz
MSVC Introspection Builds: Filter Out gtkx.h
Like the autotools builds of the introspection files, don't include gtkx.h in the introspection prepropcessing as it should not be included by other GTK+ headers.
Diffstat (limited to 'build/gen-file-list-gtk.py')
-rw-r--r--build/gen-file-list-gtk.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/build/gen-file-list-gtk.py b/build/gen-file-list-gtk.py
index f39944a082..3389e05050 100644
--- a/build/gen-file-list-gtk.py
+++ b/build/gen-file-list-gtk.py
@@ -63,7 +63,11 @@ def gen_gtk_filelist(srcroot, subdir, dest):
vars['gtk_clipboard_dnd_c_sources'].split() + \
vars['gtk_other_src'].split()
- sources = [i for i in files if not (i.endswith('private.h')) and i != 'gtktextdisplay.h' and i != 'gtktextlayout.h']
+ sources = [i for i in files \
+ if not (i.endswith('private.h')) \
+ and i != 'gtktextdisplay.h' \
+ and i != 'gtktextlayout.h' \
+ and i != 'gtkx.h']
with open(dest, 'w') as d:
for i in sources: