diff options
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([ | |||
| 11 | "DIGESTMD5Properties.cpp", | 11 | "DIGESTMD5Properties.cpp", |
| 12 | "DIGESTMD5ClientAuthenticator.cpp", | 12 | "DIGESTMD5ClientAuthenticator.cpp", |
| 13 | ]) | 13 | ]) |
| 14 | if myenv["PLATFORM"] == "win32" : | ||
| 15 | objects += myenv.SwiftenObject([ | ||
| 16 | "WindowsServicePrincipalName.cpp", | ||
| 17 | ]) | ||
| 18 | |||
| 14 | swiften_env.Append(SWIFTEN_OBJECTS = [objects]) | 19 | swiften_env.Append(SWIFTEN_OBJECTS = [objects]) |
| 15 | 20 | ||
| 16 | env.Append(UNITTEST_SOURCES = [ | 21 | env.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 | ]) |
| 28 | if myenv["PLATFORM"] == "win32" : | ||
| 29 | env.Append(UNITTEST_SOURCES = [ | ||
| 30 | File("UnitTest/WindowsServicePrincipalNameTest.cpp"), | ||
| 31 | ]) | ||
Swift