Skip to content

Commit 1c5be24

Browse files
committed
versions maintenance
1 parent a558666 commit 1c5be24

File tree

4 files changed

+27
-14
lines changed

4 files changed

+27
-14
lines changed

.gitmodules

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11

22
[submodule "lib/Qor"]
33
path = lib/Qor
4-
url = https://github.com/flipcoder/qor.git
4+
url = https://gitlab.com/flipcoder/qor.git
5+
branch = master
6+

bin/settings.json

Lines changed: 12 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,14 @@
11
{
2-
"audio" : {
3-
"music-volume" : 50,
4-
"sound-volume" : 50,
5-
"volume" : 50
6-
},
7-
"video" : {
8-
"resolution" : "1920x1080",
9-
"vsync" : false,
10-
"windowed" : true
11-
}
2+
"audio" :
3+
{
4+
"music-volume" : 100,
5+
"sound-volume" : 10,
6+
"volume" : 50
7+
},
8+
"video" :
9+
{
10+
"resolution" : "1920x1080",
11+
"vsync" : false,
12+
"windowed" : true
13+
}
1214
}

lib/Qor

Submodule Qor updated from a7a96d5 to fc1b98e

premake5.lua

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,15 @@ workspace("microarmy")
22
targetdir("bin")
33

44
configurations {"Debug", "Release"}
5-
defines { "GLM_FORCE_RADIANS", "QOR_NO_PYTHON", "QOR_NO_CAIRO", "QOR_NO_PHYSICS" }
5+
defines {
6+
"GLM_FORCE_CTOR_INIT",
7+
"GLM_ENABLE_EXPERIMENTAL",
8+
"GLM_FORCE_RADIANS",
9+
"QOR_NO_PYTHON",
10+
"QOR_NO_CAIRO",
11+
"QOR_NO_PHYSICS",
12+
"NOMINMAX"
13+
}
614

715
-- Debug Config
816
configuration "Debug"
@@ -50,13 +58,14 @@ workspace("microarmy")
5058
"boost_regex",
5159
"jsoncpp",
5260
"z",
53-
"RakNetDLL",
61+
"raknet",
5462
}
5563
includedirs {
5664
"lib/Qor/",
5765
"lib/Qor/lib/kit",
5866
"/usr/local/include/",
5967
"/usr/include/bullet/",
68+
"/usr/include/rapidxml/",
6069
"/usr/include/raknet/DependentExtensions"
6170
}
6271

0 commit comments

Comments
 (0)