summaryrefslogtreecommitdiffstats
path: root/qtwebengine.pro
diff options
context:
space:
mode:
authorJocelyn Turcotte <jocelyn.turcotte@digia.com>2013-06-11 16:45:53 +0200
committerJocelyn Turcotte <jocelyn.turcotte@digia.com>2013-06-11 16:45:53 +0200
commit4ef8f47fc55197fc8b90a1f43f87d8aba5c66ffa (patch)
treeb2a60ea38ae7240447d28cdd5d943ecc24a14dde /qtwebengine.pro
parente67c21a033121618bfe4cf62686d009d0bacd8c3 (diff)
Rename remaining references of blinq to QtWebEngine.
Diffstat (limited to 'qtwebengine.pro')
-rw-r--r--qtwebengine.pro23
1 files changed, 23 insertions, 0 deletions
diff --git a/qtwebengine.pro b/qtwebengine.pro
new file mode 100644
index 000000000..69bac5798
--- /dev/null
+++ b/qtwebengine.pro
@@ -0,0 +1,23 @@
+TEMPLATE = subdirs
+
+CONFIG += ordered
+
+# The first three subdirs contain dummy .pro files that are used by qmake
+# to generate a corresponding .gyp file
+SUBDIRS = shared \
+ lib \
+ process \
+ build \ # This is where we use the generated qt_generated.gypi and run gyp
+ example \
+
+# Extra targets that invoke ninja on the desired configuration added for convenience
+release.target = release
+release.commands = $$CHROMIUM_SRC_DIR/../depot_tools/ninja -C $$getOutDir()/Release
+release.depends: qmake
+
+debug.target = debug
+debug.commands = $$CHROMIUM_SRC_DIR/../depot_tools/ninja -C $$getOutDir()/Debug
+debug.depends: qmake
+
+QMAKE_EXTRA_TARGETS += release \
+ debug