diff options
author | Remko Tronçon <git@el-tramo.be> | 2009-08-13 17:07:18 (GMT) |
---|---|---|
committer | Remko Tronçon <git@el-tramo.be> | 2009-08-13 17:07:18 (GMT) |
commit | c0e543fd04f25f07eb244a40f305f449b492c9a6 (patch) | |
tree | d5e40b18bbde0df69e4b08a3d79cb29a5b5c7cd8 /Swiften | |
parent | a092f6967da24e06b51a1bf73aa3e45b4929de67 (diff) | |
download | swift-contrib-c0e543fd04f25f07eb244a40f305f449b492c9a6.zip swift-contrib-c0e543fd04f25f07eb244a40f305f449b492c9a6.tar.bz2 |
Add missing CocoaEventLoop build.
Diffstat (limited to 'Swiften')
-rw-r--r-- | Swiften/SConscript | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/Swiften/SConscript b/Swiften/SConscript index 320bafa..229310d 100644 --- a/Swiften/SConscript +++ b/Swiften/SConscript @@ -156,8 +156,10 @@ sources = [ # "Notifier/GrowlNotifier.cpp", if env["PLATFORM"] == "darwin" : - "EventLoop/Cocoa/CocoaEventLoop.mm", - "EventLoop/Cocoa/CocoaEvent.mm", + sources += [ + "EventLoop/Cocoa/CocoaEventLoop.mm", + "EventLoop/Cocoa/CocoaEvent.mm" + ] if env["PLATFORM"] == "darwin" : myenv.Append(CPPDEFINES = "HAVE_BONJOUR") |