diff options
author | Mili Verma <mili.verma@isode.com> | 2015-06-25 12:13:14 (GMT) |
---|---|---|
committer | Kevin Smith <kevin.smith@isode.com> | 2015-06-29 17:02:01 (GMT) |
commit | 394642c69bc232429621e209b787d3496967b37b (patch) | |
tree | 12fda8350b5694b4e6dc93899debc5a8c46e0adf /Swiften/SASL/SConscript | |
parent | ac45f360be049242a89ae80258e4ea8350f909ba (diff) | |
download | swift-394642c69bc232429621e209b787d3496967b37b.zip swift-394642c69bc232429621e209b787d3496967b37b.tar.bz2 |
Add WindowsServicePrincipalName class
Test-information:
Tested on Windows using WIP GSSAPI code.
Unit tests pass.
Change-Id: If872863d6a8b5a164f8ebec4f88e9939b4e73c62
Diffstat (limited to 'Swiften/SASL/SConscript')
-rw-r--r-- | Swiften/SASL/SConscript | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/Swiften/SASL/SConscript b/Swiften/SASL/SConscript index 6509547..faf6320 100644 --- a/Swiften/SASL/SConscript +++ b/Swiften/SASL/SConscript @@ -11,6 +11,11 @@ objects = myenv.SwiftenObject([ "DIGESTMD5Properties.cpp", "DIGESTMD5ClientAuthenticator.cpp", ]) +if myenv["PLATFORM"] == "win32" : + objects += myenv.SwiftenObject([ + "WindowsServicePrincipalName.cpp", + ]) + swiften_env.Append(SWIFTEN_OBJECTS = [objects]) env.Append(UNITTEST_SOURCES = [ @@ -20,3 +25,7 @@ env.Append(UNITTEST_SOURCES = [ File("UnitTest/DIGESTMD5PropertiesTest.cpp"), File("UnitTest/DIGESTMD5ClientAuthenticatorTest.cpp"), ]) +if myenv["PLATFORM"] == "win32" : + env.Append(UNITTEST_SOURCES = [ + File("UnitTest/WindowsServicePrincipalNameTest.cpp"), + ]) |