forked from mapeditor/tiled
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtiled.qbs
31 lines (27 loc) · 827 Bytes
/
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
import qbs 1.0
Project {
name: "Tiled"
qbsSearchPaths: "qbs"
minimumQbsVersion: "1.4.2"
property string version: qbs.getEnv("TILED_VERSION") || "0.16.1";
property bool sparkleEnabled: qbs.getEnv("TILED_SPARKLE")
property bool snapshot: qbs.getEnv("TILED_SNAPSHOT")
property bool release: qbs.getEnv("TILED_RELEASE")
references: [
"dist/win/archive.qbs",
"dist/win/distribute.qbs",
"dist/win/installer.qbs",
"src/automappingconverter",
"src/libtiled",
"src/plugins",
"src/qtpropertybrowser",
"src/qtsingleapplication",
"src/terraingenerator",
"src/tiled",
"src/tmxrasterizer",
"src/tmxviewer",
"translations",
"util/java/libtiled-java",
"util/java/tmxviewer-java"
]
}