-
Notifications
You must be signed in to change notification settings - Fork 3
/
.qmake.conf
39 lines (33 loc) · 1.33 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
33
34
35
36
37
38
39
# Configuration paths for Live CV
# LIVEKEYS_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)/livekeys/bin, which is equivalent
# to the $$OUT_PWD (or output directory) of this project), concatenated with the
# dependency subproject
#
# LIVEKEYS_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
#
# DEPLOY_TO_LIVEKEYS -
# The plugin will be deployed to Live CV's plugins directory, so it can be instantly
# imported and used.
#
# Note: The deployment and output paths of this project are configured automatically in the
# 'package.pri' file included from Live CV's dev dir
LIVEKEYS_BIN_PATH = $$shadowed($$PWD)/livecv/bin
LIVEKEYS_DEV_PATH = $$PWD/livecv
PROJECT_ROOT = $$PWD
BUILD_DEPENDENCIES = true
DEPLOY_TO_LIVEKEYS = true
BUILD_NON_FREE = false
exists($$PWD/config.pri):include($$PWD/config.pri)
include($$LIVEKEYS_DEV_PATH/project/package.pri)