-
Notifications
You must be signed in to change notification settings - Fork 0
/
.qmake.conf
32 lines (27 loc) · 1.17 KB
/
.qmake.conf
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
# Configuration paths for Live CV
# LIVECV_BIN_PATH -
# The path where Live CV binaries reside.
# In case you are building Live CV from source, together with this project, then you
# can configure it as $$shadowed($$PWD)/dependencies/livecv/bin, which is equivalent
# to the $$OUT_PWD (or output directory) of this project), concatenated with the
# dependency subproject
#
# LIVECV_DEV_PATH -
# The path to Live CV dev directory.
# In case Live CV is build from source, this is basically Live CVs source directory
# (required for 'include' and 'qmake project' files.
#
# PROJECT_ROOT -
# The path to the source code root of this project
#
# BUILD_DEPENDENCIES -
# In case you are using a source from Live CV, you need to build it first
#
# Note: The deployment and output paths of this project are configured automatically in the
# 'package.pri' file included from Live CV's dev dir
LIVECV_BIN_PATH = $$shadowed($$PWD)/dependencies/livecv/bin
LIVECV_DEV_PATH = $$PWD/dependencies/livecv
PROJECT_ROOT = $$PWD
BUILD_DEPENDENCIES = true
exists($$PWD/config.pri):include($$PWD/config.pri)
include($$LIVECV_DEV_PATH/project/package.pri)