summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRemko Tronçon <git@el-tramo.be>2010-05-08 08:01:56 (GMT)
committerRemko Tronçon <git@el-tramo.be>2010-05-08 08:24:22 (GMT)
commit5616ff49792238b451486f41b187744866d20056 (patch)
tree6c3a2f56d7aac99db4dbd7317768dfe1949a96e8 /Swiften/SASL/SConscript
parent203ca1c122db89c4a9f9f01bff2cadb3b9daca04 (diff)
downloadswift-5616ff49792238b451486f41b187744866d20056.zip
swift-5616ff49792238b451486f41b187744866d20056.tar.bz2
Added DIGEST-MD5 properties.
Diffstat (limited to 'Swiften/SASL/SConscript')
-rw-r--r--Swiften/SASL/SConscript9
1 files changed, 8 insertions, 1 deletions
diff --git a/Swiften/SASL/SConscript b/Swiften/SASL/SConscript
index 22b242e..778a414 100644
--- a/Swiften/SASL/SConscript
+++ b/Swiften/SASL/SConscript
@@ -1,4 +1,4 @@
-Import("swiften_env")
+Import("swiften_env", "env")
myenv = swiften_env.Clone()
myenv.MergeFlags(swiften_env["LIBIDN_FLAGS"])
@@ -8,5 +8,12 @@ objects = myenv.StaticObject([
"PLAINClientAuthenticator.cpp",
"PLAINMessage.cpp",
"SCRAMSHA1ClientAuthenticator.cpp",
+ "DIGESTMD5Properties.cpp",
])
swiften_env.Append(SWIFTEN_OBJECTS = [objects])
+env.Append(UNITTEST_SOURCES = [
+ File("UnitTest/PLAINMessageTest.cpp"),
+ File("UnitTest/PLAINClientAuthenticatorTest.cpp"),
+ File("UnitTest/SCRAMSHA1ClientAuthenticatorTest.cpp"),
+ File("UnitTest/DIGESTMD5PropertiesTest.cpp"),
+ ])