-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathmain_gui.pro
63 lines (56 loc) · 2.21 KB
/
main_gui.pro
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
#
# Copyright (c) 2020, 219 Design, LLC
# See LICENSE.txt
#
# https://www.219design.com
# Software | Electrical | Mechanical | Product Design
#
!include($$top_srcdir/compiler_flags.pri) { error() } # each subproject must also include this
TEMPLATE = subdirs
SUBDIRS = \
app \
lib_app \
lib_example_shared \
lib_tests \
libstyles \
libtestmain \
minutil \
third_party/googletest-release-1.11.0/googlemock \
third_party/googletest-release-1.11.0/googletest \
util \
util_tests
app.file = src/app/app.pro
lib_app.file = src/lib_app/lib.pro
lib_example_shared.file = src/lib_example_shared/lib_example_shared.pro
lib_tests.file = src/lib_app/lib_tests.pro
libstyles.file = src/libstyles/libstyles.pro
libtestmain.file = src/libtests/libtestmain.pro
minutil.file = src/minutil/minutil.pro
util.file = src/util/util.pro
util_tests.file = src/util/util_tests.pro
# third_party projects
googlemock.file = third_party/googletest-release-1.11.0/googlemock/googlemock.pro
googletest.file = third_party/googletest-release-1.11.0/googletest/googletest.pro
# The 'app' does not directly depend on this entire set of libraries.
# Instead, think of this massive dependency list as a way for us to tell qmake
# that "the install directory of app" indeed depends on (aka 'wishes to
# contain') all these libraries.
app.depends = \
lib_app \
lib_example_shared \
lib_tests \
libstyles \
libtestmain \
minutil \
third_party/googletest-release-1.11.0/googlemock \
third_party/googletest-release-1.11.0/googletest \
util \
util_tests
# The remaining 'depends' lines are used in the 'traditional' sense of actually
# specifying the miminum link-time dependencies of each item:
# NOTE: using 'CONFIG += ordered' is considered a bad practice—prefer using .depends instead.
googlemock.depends = third_party/googletest-release-1.11.0/googletest
lib_app.depends = libstyles util lib_example_shared
lib_tests.depends = lib_app libtestmain third_party/googletest-release-1.11.0/googletest third_party/googletest-release-1.11.0/googlemock
libtestmain.depends = third_party/googletest-release-1.11.0/googletest third_party/googletest-release-1.11.0/googlemock
util_tests.depends = util libtestmain