diff options
author | Remko Tronçon <git@el-tramo.be> | 2009-11-15 13:03:05 (GMT) |
---|---|---|
committer | Remko Tronçon <git@el-tramo.be> | 2009-11-15 13:33:17 (GMT) |
commit | bd4e48adb3f23f80abc8441bf359166fbe9b621c (patch) | |
tree | 9141e6e7c68e28e14961491459d5996a1d957067 /SConstruct | |
parent | 22973faaced00f3307efbb8b8fc4e914de7023e8 (diff) | |
download | swift-bd4e48adb3f23f80abc8441bf359166fbe9b621c.zip swift-bd4e48adb3f23f80abc8441bf359166fbe9b621c.tar.bz2 |
Linkify URLs.
Diffstat (limited to 'SConstruct')
-rw-r--r-- | SConstruct | 13 |
1 files changed, 10 insertions, 3 deletions
@@ -254,6 +254,10 @@ elif env.get("bonjour", False) : ################################################################################ # Project files +# FIXME: We need to explicitly list the order of libraries here, because of +# the exported FLAGS. We should put FLAGS in separate SConscript files, and +# read these in before anything else, such that we don't need to manually +# list modules in order. ################################################################################ # Third-party modules @@ -266,12 +270,15 @@ SConscript(dirs = [ # Checker SConscript(dirs = ["QA/Checker"]) -# Swiften -SConscript(dirs = "Swiften") +# Libraries +SConscript(dirs = [ + "Swiften", + "SwifTools" + ]) # Projects for dir in os.listdir(".") : - if dir in ["QA", "Swiften"] : + if dir in ["QA", "Swiften", "SwifTools"] : continue sconscript = os.path.join(dir, "SConscript") if os.path.isfile(sconscript) : |