diff options
author | aap <aap@papnet.eu> | 2021-01-08 01:41:40 +0100 |
---|---|---|
committer | aap <aap@papnet.eu> | 2021-01-08 01:41:40 +0100 |
commit | ebdf08a5144fa98fd5a0700c4865d7c6673d947e (patch) | |
tree | a239d268f61711c158583f9bc515f012b4c3fb8e /premake5.lua | |
parent | bc363a74f59806db32080393c696269277dd93f9 (diff) |
first commit for LCS
Diffstat (limited to 'premake5.lua')
-rw-r--r-- | premake5.lua | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/premake5.lua b/premake5.lua index 26c64c35..f5abbc68 100644 --- a/premake5.lua +++ b/premake5.lua @@ -58,7 +58,7 @@ function getarch(a) return a end -workspace "reVC" +workspace "reLCS" language "C++" configurations { "Debug", "Release" } location "build" @@ -225,9 +225,9 @@ local function addSrcFiles( prefix ) return prefix .. "/*cpp", prefix .. "/*.h", prefix .. "/*.c", prefix .. "/*.ico", prefix .. "/*.rc" end -project "reVC" +project "reLCS" kind "WindowedApp" - targetname "reVC" + targetname "reLCS" targetdir "bin/%{cfg.platform}/%{cfg.buildcfg}" defines { "MIAMI" } @@ -303,8 +303,8 @@ project "reVC" defines { "AUDIO_OAL" } filter {} - if(os.getenv("GTA_VC_RE_DIR")) then - setpaths("$(GTA_VC_RE_DIR)/", "%(cfg.buildtarget.name)", "") + if(os.getenv("GTA_LCS_RE_DIR")) then + setpaths("$(GTA_LCS_RE_DIR)/", "%(cfg.buildtarget.name)", "") end filter "platforms:win*" |