mirror of
https://github.com/GTAmodding/re3.git
synced 2024-11-15 09:49:02 +00:00
Use LIBRW env var it it's set
This commit is contained in:
parent
64cf568691
commit
6822cc5de8
1 changed files with 3 additions and 3 deletions
|
@ -1,4 +1,4 @@
|
||||||
Librw = os.getenv("LIBRW")
|
Librw = os.getenv("LIBRW") or "librw"
|
||||||
|
|
||||||
workspace "re3"
|
workspace "re3"
|
||||||
configurations { "Debug", "Release", "ReleaseFH", "DebugRW", "ReleaseRW" }
|
configurations { "Debug", "Release", "ReleaseFH", "DebugRW", "ReleaseRW" }
|
||||||
|
@ -54,8 +54,8 @@ workspace "re3"
|
||||||
filter "configurations:Debug or Release"
|
filter "configurations:Debug or Release"
|
||||||
files { "src/fakerw/*.*" }
|
files { "src/fakerw/*.*" }
|
||||||
includedirs { "src/fakerw" }
|
includedirs { "src/fakerw" }
|
||||||
includedirs { "librw" }
|
includedirs { Librw }
|
||||||
libdirs { path.join("librw", "lib/win-x86-d3d9/%{cfg.buildcfg}") }
|
libdirs { path.join(Librw, "lib/win-x86-d3d9/%{cfg.buildcfg}") }
|
||||||
links { "rw", "d3d9" }
|
links { "rw", "d3d9" }
|
||||||
filter {}
|
filter {}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue