diff options
author | Remko Tronçon <git@el-tramo.be> | 2011-04-10 09:54:13 (GMT) |
---|---|---|
committer | Remko Tronçon <git@el-tramo.be> | 2011-04-18 19:11:42 (GMT) |
commit | e1a3e6495c2af6c5bea3e8aa81d83af4f7872e93 (patch) | |
tree | 237765932985336fb002e4d4296a9af9a79e1017 /Swift | |
parent | ec3caf1179834f03c787f46cf44820885edbf4da (diff) | |
download | swift-e1a3e6495c2af6c5bea3e8aa81d83af4f7872e93.zip swift-e1a3e6495c2af6c5bea3e8aa81d83af4f7872e93.tar.bz2 |
Conditionally compile DBUS URI handler.
Diffstat (limited to 'Swift')
-rw-r--r-- | Swift/QtUI/SConscript | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/Swift/QtUI/SConscript b/Swift/QtUI/SConscript index d2dd37c..5973673 100644 --- a/Swift/QtUI/SConscript +++ b/Swift/QtUI/SConscript @@ -65,7 +65,6 @@ sources = [ "main.cpp", "QtAboutWidget.cpp", "QtAvatarWidget.cpp", - "QtDBUSURIHandler.cpp", "QtUIFactory.cpp", "QtChatWindowFactory.cpp", "QtChatWindow.cpp", @@ -145,7 +144,10 @@ if env["PLATFORM"] == "win32" : ] if env["PLATFORM"] == "posix" : - sources += ["FreeDesktopNotifier.cpp"] + sources += [ + "FreeDesktopNotifier.cpp" + "QtDBUSURIHandler.cpp", + ] if env["PLATFORM"] == "darwin" or env["PLATFORM"] == "win32" : swiftProgram = myenv.Program("Swift", sources) |