2021-07-21 13:31:02 -04:00
|
|
|
|
|
|
|
----------------------------
|
|
|
|
-- Project Generator
|
|
|
|
----------------------------
|
|
|
|
-- Environment vars
|
|
|
|
PSDK_DIR = os.getenv("PLUGIN_SDK_DIR")
|
|
|
|
DX9SDK_DIR = os.getenv("DIRECTX9_SDK_DIR")
|
2021-10-17 12:52:06 -04:00
|
|
|
GTASA_DIR = "F:/GTASanAndreas"
|
|
|
|
GTAVC_DIR = "E:/GTA Vice City"
|
2021-07-21 13:31:02 -04:00
|
|
|
|
|
|
|
if (DX9SDK_DIR == nil) then
|
|
|
|
error("DIRECTX9_SDK_DIR environment variable not set")
|
|
|
|
end
|
|
|
|
|
|
|
|
if (PSDK_DIR == nil) then
|
|
|
|
error("PLUGIN_SDK_DIR environment variable not set")
|
|
|
|
end
|
|
|
|
----------------------------
|
|
|
|
|
|
|
|
workspace "CheatMenu"
|
2021-07-25 08:29:01 -04:00
|
|
|
configurations { "Debug", "Release" }
|
|
|
|
architecture "x86"
|
|
|
|
platforms "Win32"
|
|
|
|
language "C++"
|
|
|
|
cppdialect "C++20"
|
|
|
|
characterset "MBCS"
|
|
|
|
staticruntime "On"
|
2021-07-30 18:01:17 -04:00
|
|
|
location "../build"
|
2021-07-21 13:31:02 -04:00
|
|
|
|
|
|
|
project "Depend"
|
2021-09-16 09:35:02 -04:00
|
|
|
kind "StaticLib"
|
2021-07-30 18:01:17 -04:00
|
|
|
targetdir "../build/bin"
|
2021-07-21 13:31:02 -04:00
|
|
|
|
|
|
|
files {
|
2021-07-30 18:01:17 -04:00
|
|
|
"../depned/**.h",
|
|
|
|
"../depend/**.hpp",
|
|
|
|
"../depend/**.c",
|
|
|
|
"../depend/**.cpp"
|
2021-07-21 13:31:02 -04:00
|
|
|
}
|
|
|
|
libdirs (PSDK_DIR .. "/output/lib")
|
|
|
|
|
|
|
|
filter "configurations:Debug"
|
|
|
|
defines { "DEBUG", "IS_PLATFORM_WIN" }
|
|
|
|
symbols "On"
|
|
|
|
|
|
|
|
filter "configurations:Release"
|
|
|
|
defines { "NDEBUG", "IS_PLATFORM_WIN" }
|
|
|
|
optimize "On"
|
|
|
|
|
2021-08-01 21:41:48 -04:00
|
|
|
project "CheatMenuVC"
|
|
|
|
kind "SharedLib"
|
|
|
|
targetdir (GTAVC_DIR)
|
|
|
|
targetextension ".asi"
|
|
|
|
|
|
|
|
files {
|
2021-09-23 02:56:23 -04:00
|
|
|
"../src/cheatmenu.h",
|
|
|
|
"../src/cheatmenu.cpp",
|
2021-08-01 21:41:48 -04:00
|
|
|
"../src/pch.h",
|
|
|
|
"../src/pch.cpp",
|
2021-09-23 02:56:23 -04:00
|
|
|
"../src/hook.h",
|
|
|
|
"../src/hook.cpp",
|
|
|
|
"../src/updater.h",
|
|
|
|
"../src/updater.cpp",
|
|
|
|
"../src/json.h",
|
|
|
|
"../src/json.cpp",
|
|
|
|
"../src/animation.h",
|
|
|
|
"../src/animation.cpp",
|
|
|
|
"../src/teleport.h",
|
|
|
|
"../src/teleport.cpp",
|
|
|
|
"../src/player.h",
|
|
|
|
"../src/player.cpp",
|
|
|
|
"../src/ped.h",
|
|
|
|
"../src/ped.cpp",
|
|
|
|
"../src/ui.h",
|
|
|
|
"../src/ui.cpp",
|
|
|
|
"../src/vehicle.h",
|
|
|
|
"../src/vehicle.cpp",
|
|
|
|
"../src/util.h",
|
|
|
|
"../src/util.cpp",
|
|
|
|
"../src/menu.h",
|
|
|
|
"../src/menu.cpp",
|
|
|
|
"../src/weapon.h",
|
|
|
|
"../src/weapon.cpp",
|
|
|
|
"../src/game.h",
|
|
|
|
"../src/game.cpp",
|
|
|
|
"../src/visual.h",
|
|
|
|
"../src/visual.cpp",
|
|
|
|
"../src/resourcestore.h",
|
|
|
|
"../src/resourcestore.cpp",
|
|
|
|
"../src/filehandler.h",
|
|
|
|
"../src/filehandler.cpp",
|
|
|
|
"../src/hotkeys.h",
|
|
|
|
"../src/hotkeys.cpp",
|
|
|
|
"../src/dllmain.cpp"
|
2021-08-01 21:41:48 -04:00
|
|
|
}
|
|
|
|
includedirs {
|
|
|
|
PSDK_DIR .. "/plugin_vc/",
|
|
|
|
PSDK_DIR .. "/plugin_vc/game_vc/",
|
|
|
|
PSDK_DIR .. "/shared/",
|
|
|
|
PSDK_DIR .. "/shared/game/"
|
|
|
|
}
|
|
|
|
libdirs (PSDK_DIR .. "/output/lib")
|
|
|
|
|
|
|
|
defines {
|
|
|
|
"NDEBUG",
|
|
|
|
"IS_PLATFORM_WIN" ,
|
|
|
|
"_CRT_SECURE_NO_WARNINGS",
|
|
|
|
"_CRT_NON_CONFORMING_SWPRINTFS",
|
|
|
|
"GTAVC",
|
|
|
|
"_DX9_SDK_INSTALLED",
|
|
|
|
"PLUGIN_SGV_10US"
|
|
|
|
}
|
|
|
|
|
|
|
|
pchheader "pch.h"
|
|
|
|
pchsource "../src/pch.cpp"
|
|
|
|
|
|
|
|
filter "configurations:Debug"
|
|
|
|
symbols "On"
|
|
|
|
links {
|
|
|
|
"Depend",
|
|
|
|
"d3d9",
|
|
|
|
"d3d11",
|
|
|
|
"XInput9_1_0",
|
|
|
|
"Pdh",
|
|
|
|
"urlmon",
|
|
|
|
"plugin_vc_d.lib"
|
|
|
|
}
|
|
|
|
|
|
|
|
filter "configurations:Release"
|
|
|
|
optimize "On"
|
|
|
|
links {
|
|
|
|
"Depend",
|
|
|
|
"d3d9",
|
|
|
|
"d3d11",
|
|
|
|
"XInput9_1_0",
|
|
|
|
"Pdh",
|
|
|
|
"urlmon",
|
|
|
|
"plugin_vc.lib"
|
|
|
|
}
|
|
|
|
|
|
|
|
project "CheatMenuSA"
|
2021-07-21 13:31:02 -04:00
|
|
|
kind "SharedLib"
|
|
|
|
targetdir (GTASA_DIR)
|
|
|
|
targetextension ".asi"
|
|
|
|
|
|
|
|
files {
|
2021-07-30 18:01:17 -04:00
|
|
|
"../src/**.h",
|
|
|
|
"../src/**.hpp",
|
|
|
|
"../src/**.cpp"
|
2021-07-21 13:31:02 -04:00
|
|
|
}
|
|
|
|
includedirs {
|
|
|
|
PSDK_DIR .. "/plugin_sa/",
|
|
|
|
PSDK_DIR .. "/plugin_sa/game_sa/",
|
|
|
|
PSDK_DIR .. "/shared/",
|
|
|
|
PSDK_DIR .. "/shared/game/"
|
|
|
|
}
|
|
|
|
libdirs (PSDK_DIR .. "/output/lib")
|
|
|
|
|
|
|
|
defines {
|
|
|
|
"NDEBUG",
|
|
|
|
"IS_PLATFORM_WIN" ,
|
|
|
|
"_CRT_SECURE_NO_WARNINGS",
|
|
|
|
"_CRT_NON_CONFORMING_SWPRINTFS",
|
|
|
|
"GTASA",
|
|
|
|
"_DX9_SDK_INSTALLED",
|
|
|
|
"PLUGIN_SGV_10US"
|
|
|
|
}
|
|
|
|
|
|
|
|
pchheader "pch.h"
|
2021-07-30 18:01:17 -04:00
|
|
|
pchsource "../src/pch.cpp"
|
2021-07-21 13:31:02 -04:00
|
|
|
|
|
|
|
filter "configurations:Debug"
|
|
|
|
symbols "On"
|
|
|
|
links {
|
|
|
|
"Depend",
|
|
|
|
"d3d9",
|
|
|
|
"d3d11",
|
|
|
|
"XInput9_1_0",
|
|
|
|
"Pdh",
|
|
|
|
"urlmon",
|
|
|
|
"plugin_d.lib"
|
|
|
|
}
|
|
|
|
|
|
|
|
filter "configurations:Release"
|
2021-07-21 14:06:42 -04:00
|
|
|
optimize "On"
|
2021-07-21 13:31:02 -04:00
|
|
|
links {
|
|
|
|
"Depend",
|
|
|
|
"d3d9",
|
|
|
|
"d3d11",
|
|
|
|
"XInput9_1_0",
|
|
|
|
"Pdh",
|
|
|
|
"urlmon",
|
|
|
|
"plugin.lib"
|
|
|
|
}
|
|
|
|
|