summaryrefslogtreecommitdiffstats
blob: 8ebbdaf897d5c105df1f8737afe16bc89673e0a4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
Import("swiftools_env", "env")

sources = [
        "XMPPURI.cpp",
        "URIHandler.cpp",
    ]

if swiftools_env["PLATFORM"] == "darwin" and swiftools_env["target"] == "native" :
    sources += [
            "MacOSXURIHandler.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"),
    ])