diff options
Diffstat (limited to 'SwifTools/Notifier/SConscript')
-rw-r--r-- | SwifTools/Notifier/SConscript | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/SwifTools/Notifier/SConscript b/SwifTools/Notifier/SConscript index 9ad2fd7..98b5400 100644 --- a/SwifTools/Notifier/SConscript +++ b/SwifTools/Notifier/SConscript @@ -2,19 +2,20 @@ Import("swiftools_env") myenv = swiftools_env.Clone() sources = [ "Notifier.cpp", ] if swiftools_env.get("HAVE_GROWL", False) : sources += [ - "GrowlNotifier.cpp", + "GrowlNotifier.mm", + "GrowlNotifierDelegate.mm", ] if swiftools_env.get("HAVE_SNARL", False) : myenv.MergeFlags(myenv["SNARL_FLAGS"]) sources += [ "SnarlNotifier.cpp", ] objects = myenv.StaticObject(sources) swiftools_env.Append(SWIFTOOLS_OBJECTS = objects) |