Skip to content

Commit fbc1628

Browse files
committed
Fixed xcopy wanting input if dir not exists.
Changed include path order for technical reasons.
1 parent 93d564b commit fbc1628

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

premake5.lua

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ workspace "MTASA"
1616

1717
dxdir = os.getenv("DXSDK_DIR") or ""
1818
includedirs {
19+
"vendor",
1920
"Shared/sdk",
20-
"vendor"
2121
}
2222

2323
defines {
@@ -28,7 +28,7 @@ workspace "MTASA"
2828

2929
-- Helper function for output path
3030
buildpath = function(p) return "%{wks.location}../Bin/"..p.."/" end
31-
copy = function(p) return "{COPY} %{cfg.buildtarget.abspath} %{wks.location}../Bin/"..p end
31+
copy = function(p) return "{COPY} %{cfg.buildtarget.abspath} %{wks.location}../Bin/"..p.."/" end
3232

3333
filter "platforms:x86"
3434
architecture "x86"

0 commit comments

Comments
 (0)