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