summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMili Verma <mili.verma@isode.com>2015-06-25 12:13:14 (GMT)
committerKevin Smith <kevin.smith@isode.com>2015-06-29 17:02:01 (GMT)
commit394642c69bc232429621e209b787d3496967b37b (patch)
tree12fda8350b5694b4e6dc93899debc5a8c46e0adf /Swiften/SASL/SConscript
parentac45f360be049242a89ae80258e4ea8350f909ba (diff)
downloadswift-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/SConscript9
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([
11 "DIGESTMD5Properties.cpp", 11 "DIGESTMD5Properties.cpp",
12 "DIGESTMD5ClientAuthenticator.cpp", 12 "DIGESTMD5ClientAuthenticator.cpp",
13 ]) 13 ])
14if myenv["PLATFORM"] == "win32" :
15 objects += myenv.SwiftenObject([
16 "WindowsServicePrincipalName.cpp",
17 ])
18
14swiften_env.Append(SWIFTEN_OBJECTS = [objects]) 19swiften_env.Append(SWIFTEN_OBJECTS = [objects])
15 20
16env.Append(UNITTEST_SOURCES = [ 21env.Append(UNITTEST_SOURCES = [
@@ -20,3 +25,7 @@ env.Append(UNITTEST_SOURCES = [
20 File("UnitTest/DIGESTMD5PropertiesTest.cpp"), 25 File("UnitTest/DIGESTMD5PropertiesTest.cpp"),
21 File("UnitTest/DIGESTMD5ClientAuthenticatorTest.cpp"), 26 File("UnitTest/DIGESTMD5ClientAuthenticatorTest.cpp"),
22 ]) 27 ])
28if myenv["PLATFORM"] == "win32" :
29 env.Append(UNITTEST_SOURCES = [
30 File("UnitTest/WindowsServicePrincipalNameTest.cpp"),
31 ])