Skip to content

Commit

Permalink
Fixed xcopy wanting input if dir not exists.
Browse files Browse the repository at this point in the history
Changed include path order for technical reasons.
  • Loading branch information
ccw808 committed Aug 1, 2016
1 parent 93d564b commit fbc1628
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions premake5.lua
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ workspace "MTASA"

dxdir = os.getenv("DXSDK_DIR") or ""
includedirs {
"vendor",
"Shared/sdk",
"vendor"
}

defines {
Expand All @@ -28,7 +28,7 @@ workspace "MTASA"

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

filter "platforms:x86"
architecture "x86"
Expand Down

0 comments on commit fbc1628

Please sign in to comment.