summaryrefslogtreecommitdiffstats
blob: 778a4142b0191acf2c0c33cebb14794cd94f4ecf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
Import("swiften_env", "env")

myenv = swiften_env.Clone()
myenv.MergeFlags(swiften_env["LIBIDN_FLAGS"])

objects = myenv.StaticObject([
		"ClientAuthenticator.cpp",
		"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"),
	])