This repository has been archived by the owner on Sep 25, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 11
/
client.qbs
134 lines (126 loc) · 3.49 KB
/
client.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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
import qbs 1.0
CppApplication {
name: "client"
targetName: "tales-client"
Depends {
name: "Qt"
submodules: [
"quick",
"gui",
]
}
Group {
name: "Binaries"
qbs.install: true
qbs.installDir: "bin/"
fileTagsFilter: "application"
}
Group {
name: "C++ Files"
prefix: "example/"
files: ["main.cpp"]
}
Group {
name: "Qt Resources"
prefix: "example/"
files: ["main.qrc"]
}
Group {
name: "Client QML Files"
prefix: "example/qml/main/"
qbs.install: true
qbs.installDir: "share/tales-client/qml/main/"
files: [
"ActionBar.qml",
"AttributeLabel.qml",
"BlueButton.qml",
"BrownButton.qml",
"Button.qml",
"CharacterPage.qml",
"ChatBar.qml",
"ChatLog.qml",
"Client.qml",
"CompoundSprite.qml",
"ConnectionStatusIndicator.qml",
"ConnectionStatus.qml",
"desktop.qml",
"ErrorLabel.qml",
"GamePage.qml",
"HealthBar.qml",
"ImageButton.qml",
"InventoryPanel.qml",
"Joystick.qml",
"LineEdit.qml",
"LoginPage.qml",
"MainWindow.qml",
"MessageDialog.qml",
"mobile.qml",
"NewCharacterPage.qml",
"NpcDialog.qml",
"OverheadChatMessage.qml",
"PlayerAttributes.qml",
"ProgressIndicator.qml",
"QuestPanel.qml",
"ResourcesWindow.qml",
"RespawnButton.qml",
"RightPanel.qml",
"ScrollTitle.qml",
"ServerListEntry.qml",
"ServerPage.qml",
"ShopWindow.qml",
"StatusPage.qml",
"TextShadow.qml",
"Viewport.qml",
]
}
Group {
name: "Images"
qbs.install: true
qbs.installDir: "share/tales-client/qml/main/images/"
prefix: "example/qml/main/images/"
files: [
"bigbutton_disabled.png",
"bigbutton_hovered.png",
"bigbutton.png",
"bigbutton_pressed.png",
"bigroundbutton.png",
"bigroundbutton_pressed.png",
"bottombar.png",
"bottom_frame.png",
"button_disabled.png",
"buttonhi.png",
"button.png",
"buttonpress.png",
"chat_icon.png",
"deepbox.png",
"frame_button.png",
"frame_button_pressed.png",
"frame_with_title.png",
"header_ornamental.png",
"icon_money.png",
"icon_right.png",
"joystick_frame.png",
"joystick.png",
"lineedit.png",
"login_background.png",
"mana.svg",
"progress-indicator.png",
"roundbutton.png",
"roundbutton_pressed.png",
"scroll_button.png",
"scroll_button_pressed.png",
"scroll_footer.png",
"scroll_header.png",
"scroll_medium_horizontal.png",
"scroll_thin.png",
"simpleframe.png",
"sourceoftales.png",
"star.png",
"tab_icon_character.png",
"tab_icon_inventory.png",
"tab_icon_questlog.png",
"tab.png",
"top_bar.png",
]
}
}