-
Notifications
You must be signed in to change notification settings - Fork 33
/
all.pro
37 lines (31 loc) · 1.03 KB
/
all.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
# Copyright (c) 2011 Hewlett-Packard Development Company, L.P. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
isEmpty(PREFIX) {
message("Install PREFIX not set, using default.")
}
include(common.pri)
TEMPLATE = subdirs
CONFIG += ordered
SUBDIRS += webvfx
SUBDIRS += viewer
SUBDIRS += tools/render
SUBDIRS += tools/browser
system(pkg-config --exists mlt-framework) {
SUBDIRS += mlt
mlt.depends = webvfx
isEmpty(MLT_SOURCE) {
warning("MLT_SOURCE not set, skipping qmelt. Set MLT_SOURCE to the MLT source code directory to build qmelt.")
} else {
SUBDIRS += mlt/qmelt
}
} else {
warning("MLT framework not found, skipping MLT plugin. Need to set PKG_CONFIG_PATH environment variable?")
}
viewer.depends = webvfx
render.depends = webvfx
# Documentation
doxydoc.target = doxydoc
doxydoc.commands = echo PROJECT_NUMBER=`git describe --always --dirty` | cat - doc/Doxyfile | doxygen -
doxydoc.depends = FORCE
QMAKE_EXTRA_TARGETS += doxydoc