forked from mapeditor/tiled
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tiled.qbs
47 lines (42 loc) · 1.29 KB
/
tiled.qbs
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
import qbs.Environment
Project {
name: "Tiled"
qbsSearchPaths: "qbs"
minimumQbsVersion: "1.13"
property string version: Environment.getEnv("TILED_VERSION") || "1.10.2";
property bool snapshot: Environment.getEnv("TILED_SNAPSHOT") == "true"
property bool release: Environment.getEnv("TILED_RELEASE") == "true"
property string libDir: "lib"
property bool installHeaders: false
property bool useRPaths: true
property bool windowsInstaller: false
property bool windowsLayout: qbs.targetOS.contains("windows")
property bool staticZstd: false
property bool sentry: false
property bool dbus: true
property string openSslPath: Environment.getEnv("OPENSSL_PATH")
references: [
"dist/archive.qbs",
"dist/distribute.qbs",
"dist/win/installer.qbs",
"docs",
"src/karchive",
"src/libtiled",
"src/libtiledquick",
"src/plugins",
"src/qtpropertybrowser",
"src/qtsingleapplication",
"src/terraingenerator",
"src/tiled/libtilededitor.qbs",
"src/tiledapp",
"src/tiledquick",
"src/tiledquickplugin",
"src/tmxrasterizer",
"src/tmxviewer",
"tests",
"translations"
]
AutotestRunner {
name: "tests"
}
}