summaryrefslogtreecommitdiffstats
path: root/qtwebengine.pro
blob: 69bac5798c8397ad1a42b50743793526c5e300ec (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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