summaryrefslogtreecommitdiffstats
blob: 24fc9e881fef51f1b42ecb845375f3a97fe96fae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
Import("swiften_env", "env")

sources = [
		"OutgoingFileTransfer.cpp",
		"OutgoingSIFileTransfer.cpp",
		"IncomingFileTransfer.cpp",
		"IncomingJingleFileTransfer.cpp",
		"IncomingFileTransferManager.cpp",
		"RemoteJingleTransportCandidateSelector.cpp",
		"RemoteJingleTransportCandidateSelectorFactory.cpp",
		"LocalJingleTransportCandidateGenerator.cpp",
		"LocalJingleTransportCandidateGeneratorFactory.cpp",
		"JingleTransport.cpp",
		"JingleIncomingIBBTransport.cpp",
		"ReadBytestream.cpp",
		"WriteBytestream.cpp",
		"FileReadBytestream.cpp",
		"FileWriteBytestream.cpp",
		"SOCKS5BytestreamServer.cpp",
		"SOCKS5BytestreamServerSession.cpp",
		"SOCKS5BytestreamRegistry.cpp",
		"IBBSendSession.cpp",
		"IBBReceiveSession.cpp",
	]

swiften_env.Append(SWIFTEN_OBJECTS = swiften_env.SwiftenObject(sources))

env.Append(UNITTEST_SOURCES = [
			File("UnitTest/SOCKS5BytestreamServerSessionTest.cpp"),
			File("UnitTest/IBBSendSessionTest.cpp"),
			File("UnitTest/IBBReceiveSessionTest.cpp"),
	])