blob: 42c6ca8612eb031e982cfeb8598a3f4d5de0d988 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
Import("swiftools_env", "env")
sources = [
"XMPPURI.cpp",
"URIHandler.cpp",
]
if swiftools_env["PLATFORM"] == "darwin" and swiftools_env["target"] == "native" :
sources += [
"MacOSXURIHandler.mm",
"MacOSXURIHandlerHelpers.mm",
]
elif swiftools_env["PLATFORM"] == "win32" :
sources += []
else :
sources += []
objects = swiftools_env.StaticObject(sources)
swiftools_env.Append(SWIFTOOLS_OBJECTS = [objects])
env.Append(UNITTEST_SOURCES = [
File("UnitTest/XMPPURITest.cpp"),
])
|