diff options
author | Remko Tronçon <git@el-tramo.be> | 2010-05-08 16:48:21 (GMT) |
---|---|---|
committer | Remko Tronçon <git@el-tramo.be> | 2010-05-08 16:48:21 (GMT) |
commit | d233ec7a863fb0b9a6f20ea0aa52c7c0ea38e2fd (patch) | |
tree | b0ff4203dc76d3995fbf696d0432f15d7f4916a9 /Swiften/SASL/SConscript | |
parent | 52bd37a759acc7edbd616c745ff64ac70ae41b9c (diff) | |
download | swift-d233ec7a863fb0b9a6f20ea0aa52c7c0ea38e2fd.zip swift-d233ec7a863fb0b9a6f20ea0aa52c7c0ea38e2fd.tar.bz2 |
Added DIGEST-MD5 client authenticator.
Diffstat (limited to 'Swiften/SASL/SConscript')
-rw-r--r-- | Swiften/SASL/SConscript | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Swiften/SASL/SConscript b/Swiften/SASL/SConscript index 778a414..0ef9581 100644 --- a/Swiften/SASL/SConscript +++ b/Swiften/SASL/SConscript @@ -9,6 +9,7 @@ objects = myenv.StaticObject([ "PLAINMessage.cpp", "SCRAMSHA1ClientAuthenticator.cpp", "DIGESTMD5Properties.cpp", + "DIGESTMD5ClientAuthenticator.cpp", ]) swiften_env.Append(SWIFTEN_OBJECTS = [objects]) env.Append(UNITTEST_SOURCES = [ @@ -16,4 +17,5 @@ env.Append(UNITTEST_SOURCES = [ File("UnitTest/PLAINClientAuthenticatorTest.cpp"), File("UnitTest/SCRAMSHA1ClientAuthenticatorTest.cpp"), File("UnitTest/DIGESTMD5PropertiesTest.cpp"), + File("UnitTest/DIGESTMD5ClientAuthenticatorTest.cpp"), ]) |