This repository was archived by the owner on Aug 11, 2024. It is now read-only.
forked from rectalogic/webvfx
-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathall.pro
More file actions
43 lines (36 loc) · 1.2 KB
/
all.pro
File metadata and controls
43 lines (36 loc) · 1.2 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
# 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.")
}
isEqual(QT_MAJOR_VERSION, 5):cache()
include(common.pri)
!minQtVersion(5, 2, 0) {
message("Cannot build WebVfx with Qt version $${QT_VERSION}.")
error("Use at least Qt 5.2.0.")
}
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