Skip to content

Commit d61847e

Browse files
committed
windows compilation fixes
1 parent 3983dc3 commit d61847e

File tree

1 file changed

+7
-8
lines changed

1 file changed

+7
-8
lines changed

premake5.lua

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -90,14 +90,14 @@ workspace("qor")
9090
}
9191

9292
configuration "windows"
93-
toolset "v140"
93+
toolset "v141"
9494
flags { "MultiProcessorCompile" }
9595

9696
links {
9797
"ws2_32",
98-
"glibmm.dll",
99-
"cairomm.dll",
100-
"pangomm.dll",
98+
"glibmm.dll.lib",
99+
"cairomm.dll.lib",
100+
"pangomm.dll.lib",
101101
"SDL2main",
102102
"OpenGL32",
103103
"GLU32",
@@ -106,6 +106,7 @@ workspace("qor")
106106
"GLEW32",
107107
"assimp",
108108
"freeimage",
109+
"OpenAL32",
109110
"alut",
110111
"libogg",
111112
"libvorbis",
@@ -144,15 +145,15 @@ workspace("qor")
144145
libdirs {
145146
"c:/msvc/lib32/debug"
146147
}
147-
configuration { "windows" }
148+
configuration "windows"
148149
includedirs {
149150
"C:/Python27/include",
150151
}
151152
libdirs {
152153
"c:/Program Files (x86)/OpenAL 1.1 SDK/libs/Win32",
153154
"c:/msvc/lib32",
154155
"c:/gtkmm/lib",
155-
"c:/local/boost_1_64_0/lib32-msvc-14.1",
156+
"C:/local/boost_1_64_0/lib32-msvc-14.1",
156157
"C:/Python27/libs",
157158
}
158159
-- buildoptions {
@@ -162,7 +163,6 @@ workspace("qor")
162163

163164
configuration { "windows", "Debug" }
164165
links {
165-
--"libboost_filesystem-vc140-mt-gd-1_64",
166166
"RakNet_VS2008_LibStatic_Debug_Win32",
167167
--"BulletSoftBody_vs2010",
168168
"BulletDynamics_vs2010_debug",
@@ -172,7 +172,6 @@ workspace("qor")
172172
configuration {}
173173
configuration { "windows", "Release" }
174174
links {
175-
--"libboost_filesystem-vc140-mt-1_64",
176175
"RakNet_VS2008_LibStatic_Release_Win32",
177176
--"BulletSoftBody_vs2010",
178177
"BulletDynamics_vs2010",

0 commit comments

Comments
 (0)