-
Notifications
You must be signed in to change notification settings - Fork 110
Expand file tree
/
Copy pathPythonQt.pro
More file actions
24 lines (21 loc) · 858 Bytes
/
PythonQt.pro
File metadata and controls
24 lines (21 loc) · 858 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
TEMPLATE = subdirs
# Define the full set of subdirectories, including the generator.
# This list is used as the default build target.
ALL_SUBDIRS = generator src extensions tests examples
tests.depends += src extensions
extensions.depends += src
examples.depends += src extensions
# The 'generator_only' config can be used to override the default.
CONFIG(generator_only) {
# If the generator_only config is set, override the SUBDIRS list
# to only include the generator.
SUBDIRS = generator
} else: CONFIG(exclude_generator) {
# If the 'generator_only' option is not present, but 'exclude_generator' is,
# then remove the generator from the default list.
SUBDIRS = $$ALL_SUBDIRS
SUBDIRS -= generator
} else {
# If neither special option is set, use the default build which includes everything.
SUBDIRS = $$ALL_SUBDIRS
}