diff options
author | Gurmeen Bindra <gurmeen.bindra@isode.com> | 2016-10-26 13:24:04 (GMT) |
---|---|---|
committer | Tobias Markmann <tm@ayena.de> | 2016-10-26 14:36:57 (GMT) |
commit | 97bc94bfee234d5ca93e61a55c13d864ddd79ec6 (patch) | |
tree | 11f915a816290408aa275c5e2237e3b2af74d25a /SwifTools | |
parent | 0e9829ea3b43119b4e60ea2f8eca14a423cb1349 (diff) | |
download | swift-97bc94bfee234d5ca93e61a55c13d864ddd79ec6.zip swift-97bc94bfee234d5ca93e61a55c13d864ddd79ec6.tar.bz2 |
Exclude the Notification Center code from iOS builds
Test-information:
Build from Xcode for iOS works.
Change-Id: I77f5333839d42dcb4dd4c0e62ffc0de6b5cb4131
Diffstat (limited to 'SwifTools')
-rw-r--r-- | SwifTools/Notifier/SConscript | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/SwifTools/Notifier/SConscript b/SwifTools/Notifier/SConscript index e87312c..b3c8115 100644 --- a/SwifTools/Notifier/SConscript +++ b/SwifTools/Notifier/SConscript @@ -11,7 +11,7 @@ if swiftools_env.get("HAVE_GROWL", False) : "GrowlNotifier.mm", "GrowlNotifierDelegate.mm", ] -elif myenv["PLATFORM"] == "darwin" : +elif myenv["PLATFORM"] == "darwin" and myenv["target"] == "native" : sources += [ "NotificationCenterNotifier.mm", "NotificationCenterNotifierDelegate.mm", |