aboutsummaryrefslogtreecommitdiffstats
path: root/examples/examples.pro
blob: 34b5843f3d6ffacf8f7a67759994b807d2e86db5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# We cannot use qtcreatordata.pri for this, because that cannot be made "on request only"
# so we use a "no_default_install" install target instead.

TEMPLATE = aux

include(../plugins/pythonextensions/qtcreator.pri)
include($$IDE_SOURCE_TREE/qtcreator.pri)

inst_examples.files = \
    projects \
    requirerequests \
    smallmenu \
    transform

inst_examples.path = $$IDE_PLUGIN_PATH/python
inst_examples.CONFIG += no_default_install directory
INSTALLS += inst_examples

inst_examplefiles.files = \
    examples_common.py \
    macroexpander.py

inst_examplefiles.path = $$IDE_PLUGIN_PATH/python
inst_examplefiles.CONFIG += no_default_install
INSTALLS += inst_examplefiles

copyexamples.depends += install_inst_examples install_inst_examplefiles
QMAKE_EXTRA_TARGETS += copyexamples