aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordt <qtc-commiter@nokia.com>2008-12-16 14:37:23 +0100
committerdt <qtc-commiter@nokia.com>2008-12-16 14:37:23 +0100
commita2cadd1b8e9a005144846ea7f3fcf2fcdb49de39 (patch)
treec9bbd4997ad90c8b4ae6e098f569f92f12f7a600
parentfef59aa446074e92295051b978fdfdcaff8af5e2 (diff)
Fixes: One last try to fix the loading problem.
Details: Depend on libQtSvg and libQtDBus, so that our version gets loaded.
-rw-r--r--src/app/app.pro4
-rw-r--r--src/app/main.cpp1
2 files changed, 4 insertions, 1 deletions
diff --git a/src/app/app.pro b/src/app/app.pro
index 2cb354da49..52e53003f3 100644
--- a/src/app/app.pro
+++ b/src/app/app.pro
@@ -13,13 +13,15 @@ win32 {
}
linux-* {
LIBS *= -lExtensionSystem -lAggregation
- QMAKE_LFLAGS+=-Wl,--enable-new-dtags
+ QT += svg dbus
+
}
TEMPLATE = app
TARGET = $$IDE_APP_TARGET
DESTDIR = ../../bin
+
SOURCES += main.cpp
macx {
diff --git a/src/app/main.cpp b/src/app/main.cpp
index eedc9e1365..b8d4b9d4b4 100644
--- a/src/app/main.cpp
+++ b/src/app/main.cpp
@@ -283,3 +283,4 @@ int main(int argc, char **argv)
QTimer::singleShot(100, &pluginManager, SLOT(startTests()));
return app.exec();
}
+