2019-05-15 14:52:37 +00:00
|
|
|
workspace "re3"
|
2019-05-30 21:49:06 +00:00
|
|
|
configurations { "ReleaseCI", "Release", "ReleaseFH", "Debug" }
|
2019-05-15 14:52:37 +00:00
|
|
|
location "build"
|
|
|
|
|
|
|
|
files { "src/*.*" }
|
2019-05-31 17:02:26 +00:00
|
|
|
files { "src/skel/*.*" }
|
2019-06-02 03:00:38 +00:00
|
|
|
files { "src/skel/win/*.*" }
|
2019-05-15 14:52:37 +00:00
|
|
|
files { "src/math/*.*" }
|
|
|
|
files { "src/modelinfo/*.*" }
|
|
|
|
files { "src/entities/*.*" }
|
2019-05-29 16:06:33 +00:00
|
|
|
files { "src/weapons/*.*" }
|
2019-05-15 14:52:37 +00:00
|
|
|
files { "src/render/*.*" }
|
2019-05-18 10:39:39 +00:00
|
|
|
files { "src/control/*.*" }
|
2019-06-11 06:59:28 +00:00
|
|
|
files { "src/animation/*.*" }
|
2019-05-18 10:39:39 +00:00
|
|
|
files { "src/audio/*.*" }
|
2019-05-15 14:52:37 +00:00
|
|
|
|
2019-05-18 10:39:39 +00:00
|
|
|
includedirs { "src" }
|
2019-06-02 03:00:38 +00:00
|
|
|
includedirs { "src/skel/" }
|
|
|
|
includedirs { "src/skel/win" }
|
2019-05-18 10:39:39 +00:00
|
|
|
includedirs { "src/modelinfo" }
|
|
|
|
includedirs { "src/entities" }
|
2019-05-29 16:06:33 +00:00
|
|
|
includedirs { "src/weapons" }
|
2019-05-18 10:39:39 +00:00
|
|
|
includedirs { "src/render" }
|
|
|
|
includedirs { "src/control" }
|
|
|
|
includedirs { "src/audio" }
|
2019-06-11 06:59:28 +00:00
|
|
|
includedirs { "src/animation" }
|
2019-06-02 03:00:38 +00:00
|
|
|
includedirs { "dxsdk/include" }
|
2019-05-18 10:39:39 +00:00
|
|
|
includedirs { "rwsdk/include/d3d8" }
|
2019-06-02 03:00:38 +00:00
|
|
|
|
|
|
|
libdirs { "dxsdk/lib" }
|
2019-05-15 14:52:37 +00:00
|
|
|
|
|
|
|
project "re3"
|
|
|
|
kind "SharedLib"
|
|
|
|
language "C++"
|
|
|
|
targetname "re3"
|
|
|
|
targetdir "bin/%{cfg.buildcfg}"
|
|
|
|
targetextension ".dll"
|
|
|
|
characterset ("MBCS")
|
2019-06-06 18:33:57 +00:00
|
|
|
linkoptions "/SAFESEH:NO"
|
2019-05-15 14:52:37 +00:00
|
|
|
|
|
|
|
filter "configurations:Debug"
|
|
|
|
defines { "DEBUG" }
|
2019-05-30 21:49:06 +00:00
|
|
|
staticruntime "on"
|
2019-05-15 14:52:37 +00:00
|
|
|
symbols "On"
|
|
|
|
debugdir "C:/Users/aap/games/gta3_re"
|
|
|
|
debugcommand "C:/Users/aap/games/gta3_re/gta3.exe"
|
|
|
|
postbuildcommands "copy /y \"$(TargetPath)\" \"C:\\Users\\aap\\games\\gta3_re\\plugins\\re3.dll\""
|
|
|
|
|
|
|
|
filter "configurations:Release"
|
|
|
|
defines { "NDEBUG" }
|
|
|
|
optimize "On"
|
2019-05-30 21:49:06 +00:00
|
|
|
staticruntime "on"
|
2019-05-15 14:52:37 +00:00
|
|
|
debugdir "C:/Users/aap/games/gta3_re"
|
|
|
|
debugcommand "C:/Users/aap/games/gta3_re/gta3.exe"
|
|
|
|
postbuildcommands "copy /y \"$(TargetPath)\" \"C:\\Users\\aap\\games\\gta3_re\\plugins\\re3.dll\""
|
2019-05-30 21:49:06 +00:00
|
|
|
filter "configurations:ReleaseFH"
|
|
|
|
defines { "NDEBUG" }
|
|
|
|
symbols "Full"
|
|
|
|
optimize "off"
|
|
|
|
staticruntime "on"
|
|
|
|
debugdir "F:/Rockstar Games/GTAIII"
|
|
|
|
debugcommand "F:/Rockstar Games/GTAIII/gta3.exe"
|
|
|
|
targetextension ".asi"
|
|
|
|
targetdir "F:/Rockstar Games/GTAIII/scripts"
|
2019-05-19 21:05:06 +00:00
|
|
|
filter "configurations:ReleaseCI"
|
|
|
|
defines { "NDEBUG" }
|
|
|
|
optimize "On"
|
2019-05-30 21:49:06 +00:00
|
|
|
staticruntime "on"
|
|
|
|
|