diff options
author | Remko Tronçon <git@el-tramo.be> | 2009-09-03 16:35:10 (GMT) |
---|---|---|
committer | Remko Tronçon <git@el-tramo.be> | 2009-09-03 16:35:10 (GMT) |
commit | 630728ba5d1c263e62d65c3f3cac1520340b7172 (patch) | |
tree | 2e10cbc8000c8840f6adf5f18103c0b0e836ddbd /SConstruct | |
parent | 776c7f67e845e9193993cec42fa60b2e418e9c75 (diff) | |
download | swift-630728ba5d1c263e62d65c3f3cac1520340b7172.zip swift-630728ba5d1c263e62d65c3f3cac1520340b7172.tar.bz2 |
Move Swiften QA test into QA module.
Diffstat (limited to 'SConstruct')
-rw-r--r-- | SConstruct | 15 |
1 files changed, 7 insertions, 8 deletions
@@ -252,14 +252,14 @@ elif env.get("bonjour", False) : ################################################################################ # Third-party modules -SConscript([ - "3rdParty/CppUnit/SConscript", - "3rdParty/Boost/SConscript", - "3rdParty/LibIDN/SConscript", - "3rdParty/SQLite/SConscript"]) +SConscript(dirs = [ + "3rdParty/CppUnit", + "3rdParty/Boost", + "3rdParty/LibIDN", + "3rdParty/SQLite"]) # Swiften -SConscript("Swiften/SConscript") +SConscript(dirs = "Swiften") # Projects for dir in os.listdir(".") : @@ -270,8 +270,7 @@ for dir in os.listdir(".") : SConscript(sconscript) # QA -SConscript("QA/SConscript") - +SConscript(dirs = "QA") ################################################################################ # Print summary |