diff options
author | Remko Tronçon <git@el-tramo.be> | 2012-07-15 07:49:41 (GMT) |
---|---|---|
committer | Remko Tronçon <git@el-tramo.be> | 2012-07-15 07:49:41 (GMT) |
commit | c823cb663c8fa73af96b266aa3d1eedcc0c6ee4a (patch) | |
tree | dc5f01d38248ef64b854d2d2da2e5ebdcd56f975 /Swiften/SConscript | |
parent | 562e37bca8ec283a382964e29ccb0ec0e4ba9d0f (diff) | |
download | swift-c823cb663c8fa73af96b266aa3d1eedcc0c6ee4a.zip swift-c823cb663c8fa73af96b266aa3d1eedcc0c6ee4a.tar.bz2 |
Include more headers in Swiften.h
Diffstat (limited to 'Swiften/SConscript')
-rw-r--r-- | Swiften/SConscript | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Swiften/SConscript b/Swiften/SConscript index 105a7f4..c9796f4 100644 --- a/Swiften/SConscript +++ b/Swiften/SConscript @@ -419,19 +419,19 @@ if env["SCONS_STAGE"] == "build" : include = include.replace("\\", "/") swiften_includes.append(include) # Private modules - if root.endswith("Config") or root.endswith("Compress") : + if root.endswith("Config") : continue # Library-specfifc private modules - if root.endswith("OpenSSL") or root.endswith("Cocoa") or root.endswith("Qt") or root.endswith("IDN") or root.endswith("Avahi") or root.endswith("Bonjour") : + if root.endswith("OpenSSL") or root.endswith("Cocoa") or root.endswith("Qt") or root.endswith("Avahi") or root.endswith("Bonjour") : continue # Library-specific files - if file.startswith("Schannel") or file.startswith("CAPI") or file.startswith("LibXML") or file.startswith("Expat") or file.startswith("GConf") or file.startswith("MacOSX") or file.startswith("Windows") or file.endswith("_Windows.h") or file.startswith("SQLite") or file.startswith("NATPMP") or file.startswith("MiniUPnP") : + if file.endswith("_Private.h") or file.startswith("Schannel") or file.startswith("CAPI") or file.startswith("MacOSX") or file.startswith("Windows") or file.endswith("_Windows.h") or file.startswith("SQLite") or file == "ICUConverter.h" : continue # Specific headers we don't want to globally include - if file == "Swiften.h" or file == "foreach.h" or file == "Log.h" or file == "format.h" or file == "CompressionLayer.h": + if file == "Swiften.h" or file == "foreach.h" or file == "Log.h" or file == "format.h" : continue swiften_header += "#include <" + include + ">\n" swiften_includes.append(include) |