Skip to content

Commit b2e7cfd

Browse files
committed
Fix 64-bit server output path
1 parent 7b9e05d commit b2e7cfd

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

premake5.lua

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,9 @@ project "Lua_Server"
2222
filter "system:not windows"
2323
kind "StaticLib"
2424

25+
filter {"system:windows", "platforms:x64"}
26+
targetdir(buildpath("server/x64"))
27+
2528

2629
if os.get() == "windows" then
2730
project "Lua_Client"
@@ -49,6 +52,6 @@ if os.get() == "windows" then
4952
configuration "windows"
5053
defines { "LUA_BUILD_AS_DLL" }
5154

52-
filter "architecture:x64"
55+
filter "platforms:x64"
5356
flags { "ExcludeFromBuild" }
5457
end

0 commit comments

Comments
 (0)