blob: 4ae4a0720e5cd5b398120e3e624007a6506cf11c (
plain)
1
2
3
4
5
6
7
8
|
Import("swiftools_env", "env")
sources = []
if swiftools_env["PLATFORM"] == "darwin" and swiftools_env["target"] == "native" :
sources += ["CocoaAction.mm"]
objects = swiftools_env.StaticObject(sources)
swiftools_env.Append(SWIFTOOLS_OBJECTS = [objects])
|