forked from PimenovAlexander/corecvs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcvs-open.pro
More file actions
80 lines (65 loc) · 2.66 KB
/
cvs-open.pro
File metadata and controls
80 lines (65 loc) · 2.66 KB
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
TEMPLATE = subdirs
CONFIG += ordered
SUBDIRS += \
core \
test-core \
test-core-perf \
utils \
\
tests \
# \
base_application \
# base_application_example \
recorder \
# scanner \
# testbed \
cloudview \
# physics \
imageview \
# \
generator \
# egomotion \
# applications/laserscan
coptercontrol \
win32 {
SUBDIRS += directshow
}
win32 {
# SUBDIRS += preprocSrc
# SUBDIRS += opencl
} else {
#SUBDIRS += preprocSrc
#SUBDIRS += opencl # it waits a time for an accurate integration... :(
}
generator.depends += core
test-core.depends += core
test-core-perf.depends += core
utils.depends += core
#utils.depends += preprocSrc # preprocSrc tool is needed to convert OpenCL sources into one binary archive
baseApplication.depends += core utils # utils: as libs building could be done in parallel except apps!
tests.depends += core utils # utils: as libs building could be done in parallel except apps!
directshow.depends += core
hostSoftStub.depends += baseApplication utils
recorder.depends += baseApplication utils
scanner.depends += baseApplication utils
cloudview.depends += utils
imageview.depends += utils
testbed.depends += utils
core.file = core/core.pro
test-core.file = test-core/test-core.pro
test-core-perf.file = test-core/-perf/test-core-perf.pro
utils.file = utils/utils.pro
tests.file = test/tests.pro
directshow.file = wrappers/directShow/directShow.pro
base_application.file = applications/base/baseApplication.pro
base_application_example.file = applications/base/baseApplicationExample.pro
recorder.file = applications/recorder/recorder.pro
scanner.file = applications/scanner/scanner.pro
egomotion.file = applications/egomotion/egomotion.pro
cloudview.file = applications/cloudview/cloudview.pro
physics.file = applications/physics/physics.pro
imageview.file = applications/imageview/imageview.pro
testbed.file = applications/testbed/testbed.pro
generator.file = tools/generator/generator.pro
coptercontrol.file = applications/coptercontrol/coptercontrol.pro
OTHER_FILES += cvs-config.pri