diff options
-rw-r--r-- | Swiften/EventLoop/SConscript | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Swiften/EventLoop/SConscript b/Swiften/EventLoop/SConscript index 8bef8fb..d26661c 100644 --- a/Swiften/EventLoop/SConscript +++ b/Swiften/EventLoop/SConscript @@ -9,13 +9,13 @@ sources = [ "SingleThreadedEventLoop.cpp", ] objects = swiften_env.SwiftenObject(sources) swiften_env.Append(SWIFTEN_OBJECTS = [objects]) -if swiften_env["PLATFORM"] == "darwin" and swiften_env["target"] == "native": +if swiften_env["PLATFORM"] == "darwin" and swiften_env["target"] == "native" or swiften_env["target"] == 'xcode': myenv = swiften_env.Clone() myenv.Append(CXXFLAGS = myenv["OBJCCFLAGS"]) objects = myenv.SwiftenObject([ "Cocoa/CocoaEventLoop.mm", "Cocoa/CocoaEvent.mm" ]) |