Skip to content

Commit d56a56e

Browse files
committed
logo
1 parent cc6e16f commit d56a56e

File tree

3 files changed

+56
-35
lines changed

3 files changed

+56
-35
lines changed

README.md

+1-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,4 @@
1-
Qor
2-
===
3-
4-
[![Join the chat at https://gitter.im/flipcoder/qor](https://badges.gitter.im/flipcoder/qor.svg)](https://gitter.im/flipcoder/qor?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
1+
![Qor](http://github.com/qor/blob/master/qor.png)
52

63
2D/3D OpenGL Game Engine (C++11 w/ Python scripting)
74

qor.png

62.9 KB
Loading

templates/base/premake4.lua renamed to templates/base/premake5.lua

+55-31
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
1-
solution("base")
1+
workspace("base")
22
targetdir("bin")
3+
debugdir("bin")
34

45
configurations {"Debug", "Release"}
5-
defines { "GLM_FORCE_RADIANS", "QOR_NO_PYTHON", "QOR_NO_CAIRO", "QOR_NO_NET" }
6+
defines { "GLM_FORCE_RADIANS", "NOMINMAX" }
67

78
-- Debug Config
89
configuration "Debug"
910
defines { "DEBUG", "BACKWARD_HAS_BFD=1" }
10-
flags { "Symbols" }
11+
symbols "On"
1112
linkoptions { }
1213

1314
configuration "gmake"
@@ -30,8 +31,6 @@ solution("base")
3031
-- buildoptions { "-std=c++11", "-pedantic", "-Wall", "-Wextra", '-v', '-fsyntax-only'}
3132
links {
3233
"pthread",
33-
"GL",
34-
"GLU",
3534
"SDL2_ttf",
3635
"SDL2",
3736
"GLEW",
@@ -43,14 +42,14 @@ solution("base")
4342
"vorbis",
4443
"vorbisfile",
4544
"boost_system",
46-
"boost_thread",
4745
"boost_filesystem",
48-
"boost_python",
4946
"boost_coroutine",
47+
"boost_python",
5048
"boost_regex",
5149
"jsoncpp",
5250
"z",
53-
"BulletSoftBody",
51+
"RakNetDLL",
52+
--"BulletSoftBody",
5453
"BulletDynamics",
5554
"BulletCollision",
5655
"LinearMath",
@@ -77,57 +76,84 @@ solution("base")
7776
"`python2-config --libs`",
7877
"`pkg-config --libs cairomm-1.0 pangomm-1.4`"
7978
}
79+
80+
configuration "linux"
81+
links {
82+
"GL",
83+
"boost_thread",
84+
}
85+
8086
-- OS X Config
8187
configuration "macosx"
88+
links {
89+
"boost_thread-mt",
90+
}
91+
buildoptions { "-framework OpenGL" }
92+
linkoptions { "-framework OpenGL" }
93+
8294
buildoptions { "-U__STRICT_ANSI__", "-stdlib=libc++" }
8395
linkoptions { "-stdlib=libc++" }
8496

8597
configuration "windows"
98+
toolset "v141"
99+
flags { "MultiProcessorCompile" }
100+
86101
links {
87102
"ws2_32",
88-
--"glibmm.dll",
89-
--"cairomm.dll",
90-
--"pangomm.dll",
103+
"glibmm.dll.lib",
104+
"cairomm.dll.lib",
105+
"pangomm.dll.lib",
91106
"SDL2main",
92107
"OpenGL32",
93108
"GLU32",
94-
"SDL2_ttf",
95109
"SDL2",
110+
"SDL2_ttf",
96111
"GLEW32",
97112
"assimp",
98113
"freeimage",
99-
"openal32",
114+
"OpenAL32",
100115
"alut",
101116
"libogg",
102117
"libvorbis",
103118
"libvorbisfile",
104-
"boost_system-vc140-mt-1_61",
105-
"boost_thread-vc140-mt-1_61",
106-
"boost_python-vc140-mt-1_61",
107-
"boost_coroutine-vc140-mt-1_61",
108-
"boost_regex-vc140-mt-1_61",
119+
--"boost_system-vc141-mt-1_64",
120+
--"boost_filesystem-vc141-mt-1_64",
121+
--"boost_thread-vc141-mt-1_64",
122+
"python27",
123+
--"boost_python-vc141-mt-1_64",
124+
--"boost_coroutine-vc141-mt-1_64",
125+
--"boost_regex-vc141-mt-1_64",
109126
"lib_json",
110-
"BulletSoftBody",
111-
"BulletDynamics",
112-
"BulletCollision",
113-
"LinearMath",
114127
}
115128

116129
includedirs {
117-
"c:/local/boost_1_61_0",
130+
"c:/Python27/include",
131+
"c:/gtkmm/lib/pangomm/include",
132+
"c:/gtkmm/lib/sigc++/include",
133+
"c:/gtkmm/lib/cairomm/include",
134+
"c:/gtkmm/include/pango",
135+
"c:/gtkmm/include/pangomm",
136+
"c:/gtkmm/include/sigc++",
137+
"c:/gtkmm/include",
138+
"c:/gtkmm/include/cairo",
139+
"c:/gtkmm/lib/glib/include",
140+
"c:/gtkmm/include/glib",
141+
"c:/gtkmm/lib/glibmm/include",
142+
"c:/gtkmm/include/glibmm",
143+
"c:/gtkmm/include/cairomm",
144+
"c:/gtkmm/include",
145+
"c:/local/boost_1_64_0",
118146
"c:/Program Files (x86)/OpenAL 1.1 SDK/include",
119147
"c:/msvc/include",
120148
}
121149
configuration { "windows", "Debug" }
122150
libdirs { "c:/msvc/lib32/debug" }
123151
links {
124-
"libboost_filesystem-vc140-mt-gd-1_61",
125152
"RakNet_VS2008_LibStatic_Debug_Win32",
126153
}
127154
configuration {}
128155
configuration { "windows", "Release" }
129156
links {
130-
"libboost_filesystem-vc140-mt-1_61",
131157
"RakNet_VS2008_LibStatic_Release_Win32",
132158
}
133159
configuration { "windows" }
@@ -136,13 +162,10 @@ solution("base")
136162
"c:/Program Files (x86)/OpenAL 1.1 SDK/libs/Win32",
137163
"c:/msvc/lib32",
138164
"c:/gtkmm/lib",
139-
"c:/local/boost_1_61_0/lib32-msvc-14.0",
165+
"c:/local/boost_1_64_0/lib32-msvc-14.1",
166+
"C:/Python27/libs",
140167
}
141-
-- buildoptions {
142-
-- "/MP",
143-
-- "/Gm-",
144-
-- }
145-
168+
146169
project "base"
147170
kind "WindowedApp"
148171
language "C++"
@@ -176,3 +199,4 @@ solution("base")
176199
"/usr/include/bullet/",
177200
"/usr/include/raknet/DependentExtensions"
178201
}
202+

0 commit comments

Comments
 (0)