summaryrefslogtreecommitdiffstats
path: root/process
diff options
context:
space:
mode:
authorSimon Hausmann <simon.hausmann@digia.com>2013-04-11 08:26:15 +0200
committerSimon Hausmann <simon.hausmann@digia.com>2013-04-11 13:48:07 +0200
commit20392576795513b10ff6f6522b7177af7bd3d121 (patch)
tree04c55443b8897b635b792cb897a3c0bd121aa9e6 /process
parent5747660dafd44e5838601952dbde3f08fc194c0e (diff)
Hack: Link process with hard-coded list of static libs
We need to replace this with a properly dynamically generated list of dependencies, but for prototyping this will have to do the trick.
Diffstat (limited to 'process')
-rw-r--r--process/main.cpp7
-rw-r--r--process/process.pro4
2 files changed, 9 insertions, 2 deletions
diff --git a/process/main.cpp b/process/main.cpp
new file mode 100644
index 000000000..96755da2c
--- /dev/null
+++ b/process/main.cpp
@@ -0,0 +1,7 @@
+#include "content/public/app/content_main.h"
+
+int main(int argc, const char **argv)
+{
+ return content::ContentMain(argc, argv, 0);
+}
+
diff --git a/process/process.pro b/process/process.pro
index 3e063c6eb..2b949fb01 100644
--- a/process/process.pro
+++ b/process/process.pro
@@ -2,6 +2,6 @@ TEMPLATE = app
include(../blinq.pri)
-LIBS += -lcontent
-
+LIBS += $$CONTENT_LIB
+SOURCES += main.cpp