Vanilla config for Windows and win-x86 only

This commit is contained in:
withmorten 2021-07-12 04:13:42 +02:00
parent 3f5fdc39a5
commit 2f7ae611ed
2 changed files with 9 additions and 4 deletions

View File

@ -68,7 +68,7 @@ end
workspace "reVC"
language "C++"
configurations { "Debug", "Release", "Vanilla" }
configurations { "Debug", "Release" }
startproject "reVC"
location "build"
symbols "Full"
@ -80,6 +80,7 @@ workspace "reVC"
end
filter { "system:windows" }
configurations { "Vanilla" }
platforms {
"win-x86-RW34_d3d8-mss",
"win-x86-librw_d3d9-mss",
@ -123,9 +124,6 @@ workspace "reVC"
flags { "LinkTimeOptimization" }
end
filter "configurations:Vanilla"
defines { "VANILLA_DEFINES" }
filter { "platforms:win*" }
system "windows"
@ -305,6 +303,9 @@ project "reVC"
includedirs { "src/weapons" }
includedirs { "src/extras" }
filter "configurations:Vanilla"
defines { "VANILLA_DEFINES" }
if(not _OPTIONS["no-git-hash"]) then
defines { "USE_OUR_VERSIONING" }
end

View File

@ -206,6 +206,10 @@ enum Config {
#define DEFAULT_NATIVE_RESOLUTION // Set default video mode to your native resolution (fixes Windows 10 launch)
#ifdef VANILLA_DEFINES
#if !defined(_WIN32) || defined(__LP64__) || defined(_WIN64)
#error Vanilla can only be built for win-x86
#endif
#define FINAL
#define MASTER
//#define USE_MY_DOCUMENTS