Skip to content

Commit

Permalink
Use path.join for DirectX directory path
Browse files Browse the repository at this point in the history
  • Loading branch information
Necktrox committed Feb 11, 2018
1 parent 046fd1f commit fd3ec5c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions premake5.lua
Expand Up @@ -88,10 +88,10 @@ workspace "MTASA"
flags { "StaticRuntime" }
defines { "WIN32", "_WIN32" }
includedirs {
dxdir.."Include"
path.join(dxdir, "Include")
}
libdirs {
dxdir.."Lib/x86"
path.join(dxdir, "Lib/x86")
}

filter {"system:windows", "configurations:Debug"}
Expand Down

0 comments on commit fd3ec5c

Please sign in to comment.