diff options
author | Tobias Markmann <tm@ayena.de> | 2016-02-03 13:45:44 (GMT) |
---|---|---|
committer | Kevin Smith <kevin.smith@isode.com> | 2016-02-04 15:41:17 (GMT) |
commit | de378c0b47268aea03177165156627659e28dde3 (patch) | |
tree | 3da89610ffb11bcdcc850ad260d01830187444c2 /Swiftob/SConscript | |
parent | 20333d5b8dc0f97b60415f0daf3c53a573e0ff8f (diff) | |
download | swift-de378c0b47268aea03177165156627659e28dde3.zip swift-de378c0b47268aea03177165156627659e28dde3.tar.bz2 |
Remove abandoned Swiftob subprojectswift-3.0rc1
Swifttob used to be an initial approach of a XMPP bot using
Swiften. Today such a bot would probably use Sluift.
Test-Information:
./scons test=system passes on OS X 10.11.3.
Change-Id: I976f26d906f3007b4395e90fdd966e2c00cb1c2c
Diffstat (limited to 'Swiftob/SConscript')
-rw-r--r-- | Swiftob/SConscript | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/Swiftob/SConscript b/Swiftob/SConscript deleted file mode 100644 index b78ade9..0000000 --- a/Swiftob/SConscript +++ /dev/null @@ -1,24 +0,0 @@ -Import("env") - -if env["SCONS_STAGE"] == "build" and not GetOption("help") and not env.get("HAVE_LUA", 0) : - print "Warning: Lua was not found. Swiftob will not be built." - if "Sluift" in env["PROJECTS"] : - env["PROJECTS"].remove("Sluift") - -elif env["SCONS_STAGE"] == "build": - myenv = env.Clone() - # Too many compile warnings here at the moment - myenv.Replace(CXXFLAGS = [flag for flag in env["CXXFLAGS"] if flag != "-Weverything"]) - myenv.UseFlags(myenv.get("LUA_FLAGS", {})) - myenv.UseFlags(myenv["SWIFTEN_FLAGS"]) - myenv.UseFlags(myenv["SWIFTEN_DEP_FLAGS"]) - sources = [ - "Swiftob.cpp", - "Users.cpp", - "Commands.cpp", - "MUCs.cpp", - "Storage.cpp", - "LuaCommands.cpp", - "main.cpp" - ] - swiftob = myenv.Program("swiftob", sources) |