From be2eee0d242c1b4e95356685314cc5988b13f1ef Mon Sep 17 00:00:00 2001 From: ThirteenAG Date: Wed, 26 Jun 2024 14:33:05 +0800 Subject: [PATCH] Update premake5.lua --- premake5.lua | 608 +++++++++++++++++++++++++++++---------------------- 1 file changed, 350 insertions(+), 258 deletions(-) diff --git a/premake5.lua b/premake5.lua index 0503c76ff..a9aab7e67 100644 --- a/premake5.lua +++ b/premake5.lua @@ -1,6 +1,6 @@ workspace "WidescreenFixesPack" configurations { "Release", "Debug" } - platforms { "Win32" } + platforms { "Windows" } architecture "x32" location "build" objdir ("build/obj") @@ -28,10 +28,11 @@ workspace "WidescreenFixesPack" files { "data/%{prj.name}/**" } files { "Resources/*.rc" } files { "external/hooking/Hooking.Patterns.h", "external/hooking/Hooking.Patterns.cpp" } - files { "external/injector/safetyhook/safetyhook.hpp", "external/injector/safetyhook/safetyhook.cpp" } - files { "external/injector/safetyhook/Zydis.h", "external/injector/safetyhook/Zydis.c" } + files { "external/injector/safetyhook/include/**.hpp", "external/injector/safetyhook/src/**.cpp" } + files { "external/injector/zydis/**.h", "external/injector/zydis/**.c" } files { "includes/stdafx.h", "includes/stdafx.cpp" } - includedirs { "external/injector/safetyhook" } + includedirs { "external/injector/safetyhook/include" } + includedirs { "external/injector/zydis" } includedirs { "external/hooking" } includedirs { "external/injector/include" } includedirs { "external/inireader" } @@ -191,21 +192,25 @@ workspace "WidescreenFixesPack" function add_kananlib() defines { "BDDISASM_HAS_MEMSET", "BDDISASM_HAS_VSNPRINTF" } - files { "external/injector/kananlib/include/utility/*.hpp", "external/injector/kananlib/src/*.cpp" } - files { "external/injector/kananlib/include/utility/thirdparty/*.hpp" } - files { "external/injector/kananlib/include/utility/thirdparty/bddisasm/bddisasm/*.c" } - files { "external/injector/kananlib/include/utility/thirdparty/bddisasm/bdshemu/*.c" } + files { "external/injector/kananlib/include/utility/**.hpp", "external/injector/kananlib/src/**.cpp" } + files { "external/injector/bddisasm/bddisasm/*.c" } + files { "external/injector/bddisasm/bdshemu/*.c" } includedirs { "external/injector/kananlib/include" } - includedirs { "external/injector/kananlib/include/utility/thirdparty/bddisasm/inc" } - includedirs { "external/injector/kananlib/include/utility/thirdparty/bddisasm/bddisasm/include" } + includedirs { "external/injector/bddisasm/inc" } + includedirs { "external/injector/bddisasm/bddisasm/include" } end function add_pspsdk() includedirs { "external/pspsdk/usr/local/pspdev/psp/sdk/include" } includedirs { "external/pspsdk/usr/local/pspdev/bin" } - files { "source/%{prj.name}/*.c", "source/%{prj.name}/makefile", "source/%{prj.name}/*.cpp" } + files { "source/%{prj.name}/*.h", "source/%{prj.name}/*.c", "source/%{prj.name}/*.cpp", "source/%{prj.name}/makefile" } end - + + function add_ps2sdk() + includedirs { "external/ps2sdk/ps2sdk/ee" } + files { "source/%{prj.name}/*.h", "source/%{prj.name}/*.c", "source/%{prj.name}/*.cpp", "source/%{prj.name}/makefile" } + end + function writeghaction(tag, prj_name) file = io.open(".github/workflows/" .. tag .. ".yml", "w") if (file) then @@ -229,12 +234,12 @@ jobs: vpaths { ["source"] = { "source/**.*" }, - ["data"] = { "data/**.*" }, + ["devdata/*"] = { "data/*" }, + ["data"] = { "data/**.cfg", "data/**.dat", "data/**.png", "data/**.ual", "data/**.x64ual", "data/**.dll" }, ["ini"] = { "data/**.ini" }, - ["resources"] = { "resources/**.*" }, - ["includes"] = { "includes/**.*" }, - ["external"] = { "external/**.*" }, - ["resources"] = { "resources/**.*" }, + ["resources/*"] = { "./resources/*" }, + ["includes/*"] = { "./includes/*" }, + ["external/*"] = "./external/*", } filter "configurations:Debug*" @@ -245,61 +250,99 @@ jobs: defines "NDEBUG" optimize "On" +group "Win64" project "Assembly64.TestApp" kind "ConsoleApp" targetextension ".exe" platforms { "Win64" } architecture "x64" setpaths("./data/%{prj.name}/", "%{prj.name}.exe", "") + project "Assembly64.TestAsi" platforms { "Win64" } architecture "x64" add_asmjit() setpaths("./data/Assembly64.TestApp/", "Assembly64.TestApp.exe", "") + +project "FarCry64.WidescreenFix" + platforms { "Win64" } + architecture "x64" + files { "source/FarCry.WidescreenFix/*.cpp" } + setpaths("Z:/WFP/Games/Far Cry/", "Bin64/FarCry.exe", "Bin64/") + targetdir "data/FarCry.WidescreenFix/Bin64/" + +group "Win64/GrandTheftAuto" +project "GTA3DE.FusionMod" + platforms { "Win64" } + architecture "x64" + add_asmjit() + setpaths("Z:/WFP/Games/Grand Theft Auto The Definitive Edition/GTA III - Definitive Edition/", "Gameface/Binaries/Win64/LibertyCity.exe", "Gameface/Binaries/Win64/scripts/") +project "GTAVCDE.FusionMod" + platforms { "Win64" } + architecture "x64" + add_asmjit() + setpaths("Z:/WFP/Games/Grand Theft Auto The Definitive Edition/GTA Vice City - Definitive Edition/", "Gameface/Binaries/Win64/ViceCity.exe", "Gameface/Binaries/Win64/scripts/") +project "GTASADE.FusionMod" + platforms { "Win64" } + architecture "x64" + add_asmjit() + setpaths("Z:/WFP/Games/Grand Theft Auto The Definitive Edition/GTA San Andreas - Definitive Edition/", "Gameface/Binaries/Win64/SanAndreas.exe", "Gameface/Binaries/Win64/scripts/") +group "Win64" + +group "Win64/ResidentEvil" +project "ResidentEvil4.FusionMod" + platforms { "Win64" } + architecture "x64" + setpaths("Z:/WFP/Games/ResidentEvil4/", "re4.exe", "scripts/") +group "Win64" + +project "SpyroReignitedTrilogy.WidescreenFix" + platforms { "Win64" } + architecture "x64" + setpaths("Z:/WFP/Games/Spyro Reignited Trilogy/", "Falcon/Binaries/Win64/Spyro-Win64-Shipping.exe", "Falcon/Binaries/Win64/scripts/") +group "" + +group "Win32" project "Bully.WidescreenFix" setpaths("Z:/WFP/Games/Bully Scholarship Edition/", "Bully.exe", "plugins/") -project "Burnout3.PCSX2F.WidescreenFix" - kind "Makefile" - includedirs { "external/ps2sdk/ps2sdk/ee" } - files { "source/%{prj.name}/*.h" } - files { "source/%{prj.name}/*.c", "source/%{prj.name}/makefile" } - targetextension ".elf" - setbuildpaths_ps2("Z:/GitHub/PCSX2-Fork-With-Plugins/bin/", "pcsx2x64.exe", "PLUGINS/", "%{wks.location}/../external/ps2sdk/ee/bin/vsmake.ps1", "%{wks.location}/../source/%{prj.name}/", "Burnout3.PCSX2F.WidescreenFix") - writemakefile_ps2("Burnout3.PCSX2F.WidescreenFix", "PLUGINS/", "0x02100000", "-l:libc.a -l:libm.a -l:libgcc.a", "../../includes/pcsx2/log.o", - "../../includes/pcsx2/memalloc.o", "../../includes/pcsx2/patterns.o", "../../includes/pcsx2/injector.o", "../../includes/pcsx2/rini.o", - "../../includes/pcsx2/inireader.o", "../../includes/pcsx2/mips.o") - writelinkfile_ps2("Burnout3.PCSX2F.WidescreenFix") + project "CallOfCthulhu.WidescreenFix" setpaths("Z:/WFP/Games/Call of Cthulhu/", "Engine/CoCMainWin32.exe", "Engine/scripts/") + project "ColdFear.WidescreenFix" setpaths("Z:/WFP/Games/ColdFear/", "ColdFear_retail.exe") + project "Condemned.WidescreenFix" setpaths("Z:/WFP/Games/Condemned Criminal Origins/", "Condemned.exe") + project "DeerAvenger4.WidescreenFix" setpaths("Z:/WFP/Games/Deer Avenger 4/", "DA4.exe") + project "Driv3r.WidescreenFix" setpaths("Z:/WFP/Games/DRIV3R/", "driv3r.exe") + project "DriverParallelLines.WidescreenFix" setpaths("Z:/WFP/Games/Driver Parallel Lines/", "DriverParallelLines.exe") + project "EnterTheMatrix.WidescreenFix" setpaths("Z:/WFP/Games/Enter the Matrix/", "Matrix.exe") + project "FarCry.WidescreenFix" setpaths("Z:/WFP/Games/Far Cry/", "Bin32/FarCry.exe", "Bin32/") -project "FarCry64.WidescreenFix" - platforms { "Win64" } - architecture "x64" - files { "source/FarCry.WidescreenFix/*.cpp" } - setpaths("Z:/WFP/Games/Far Cry/", "Bin64/FarCry.exe", "Bin64/") - targetdir "data/FarCry.WidescreenFix/Bin64/" + project "Flatout.WidescreenFix" setpaths("Z:/WFP/Games/Flatout/FlatOut/", "flatout.exe") + project "Flatout2.WidescreenFix" setpaths("Z:/WFP/Games/Flatout/FlatOut2/", "FlatOut2.exe") + --project "GettingUp.WidescreenFix" -- setpaths("Z:/WFP/Games/Marc Ecko's Getting Up 2/", "_Bin/GettingUp.exe", "_Bin/") -- targetdir "data/GettingUp.WidescreenFix/_Bin/" -- debugargs { "map=M01_HOO_Tranes_Hood_3" } -- buildoptions { "/Zc:threadSafeInit-" } + +group "Win32/GrandTheftAuto" project "GTA1.WidescreenFix" setpaths("Z:/WFP/Games/Grand Theft Auto/Grand Theft Auto 1 London 1969 1961/", "WINO/Grand Theft Auto.exe", "WINO/scripts/") project "GTA2.WidescreenFix" @@ -307,81 +350,291 @@ project "GTA2.WidescreenFix" project "GTA3.WidescreenFix" files { "includes/GTA/*.h", "includes/GTA/*.cpp" } setpaths("Z:/WFP/Games/Grand Theft Auto/GTAIII/", "gta3.exe") -project "GTA3DE.FusionMod" - platforms { "Win64" } - architecture "x64" - add_asmjit() - setpaths("Z:/WFP/Games/Grand Theft Auto The Definitive Edition/GTA III - Definitive Edition/", "Gameface/Binaries/Win64/LibertyCity.exe", "Gameface/Binaries/Win64/scripts/") project "GTAVC.WidescreenFix" files { "includes/GTA/*.h", "includes/GTA/*.cpp" } setpaths("Z:/WFP/Games/Grand Theft Auto/Grand Theft Auto Vice City/", "gta-vc.exe") -project "GTAVCDE.FusionMod" - platforms { "Win64" } - architecture "x64" - add_asmjit() - setpaths("Z:/WFP/Games/Grand Theft Auto The Definitive Edition/GTA Vice City - Definitive Edition/", "Gameface/Binaries/Win64/ViceCity.exe", "Gameface/Binaries/Win64/scripts/") project "GTASA.WidescreenFix" files { "includes/GTA/*.h", "includes/GTA/*.cpp" } setpaths("Z:/WFP/Games/Grand Theft Auto/GTA San Andreas/", "gta_sa.exe") -project "GTASADE.FusionMod" - platforms { "Win64" } - architecture "x64" - add_asmjit() - setpaths("Z:/WFP/Games/Grand Theft Auto The Definitive Edition/GTA San Andreas - Definitive Edition/", "Gameface/Binaries/Win64/SanAndreas.exe", "Gameface/Binaries/Win64/scripts/") +project "GTASA.UWP.Test" + setpaths("Z:/WFP/Games/GTASAUWP/", "GTASA.exe") +group "Win32" + +project "Gun.WidescreenFix" + setpaths("Z:/WFP/Games/GUN/", "Gun.exe") + +project "HiddenandDangerous2.WidescreenFix" + setpaths("Z:/WFP/Games/Hidden and Dangerous 2/", "hd2.exe") + +project "JustCause.WidescreenFix" + setpaths("Z:/WFP/Games/Just Cause/", "JustCause.exe") + +project "KingKong.WidescreenFix" + setpaths("Z:/WFP/Games/King Kong/", "CheckApplication.exe") + +project "KnightRider.WidescreenFix" + setpaths("Z:/WFP/Games/Knight Rider/", "Knight Rider.exe") + +project "KnightRider2.WidescreenFix" + setpaths("Z:/WFP/Games/Knight Rider 2/", "KR2.exe") + +project "LARush.WidescreenFix" + setpaths("Z:/WFP/Games/LA Rush/", "LARush.exe", "plugins/") + +project "Mafia.GenericFix" + setpaths("Z:/WFP/Games/Mafia/", "Setup.exe") + targetdir "data/Mafia.WidescreenFix/scripts" + +project "Mafia.WidescreenFix" + setpaths("Z:/WFP/Games/Mafia/", "GameV12.exe") + +project "Manhunt.WidescreenFix" + buildoptions { "/Zc:strictStrings-" } + includedirs { "source/%{prj.name}/inc" } + files { "source/%{prj.name}/**/*.cpp" } + removefiles { "includes/stdafx.h", "includes/stdafx.cpp" } + setpaths("Z:/WFP/Games/Manhunt/", "manhunt.exe") + +group "Win32/MaxPayne" +project "MaxPayne.WidescreenFix" + setpaths("Z:/WFP/Games/Max Payne/Max Payne/", "MaxPayne.exe") +project "MaxPayne2.WidescreenFix" + setpaths("Z:/WFP/Games/Max Payne/Max Payne 2 The Fall of Max Payne/", "MaxPayne2.exe") +group "Win32" + +group "Win32/NeedForSpeed" +project "NFSCarbon.WidescreenFix" + setpaths("Z:/WFP/Games/Need For Speed/Need for Speed Carbon/", "NFSC.exe") +project "NFSMostWanted.WidescreenFix" + setpaths("Z:/WFP/Games/Need For Speed/Need for Speed Most Wanted/", "speed.exe") +project "NFSProStreet.GenericFix" + setpaths("Z:/WFP/Games/Need For Speed/Need for Speed ProStreet/", "nfsps.exe") +project "NFSUndercover.GenericFix" + setpaths("Z:/WFP/Games/Need For Speed/Need for Speed Undercover/", "nfs.exe") +project "NFSUnderground.WidescreenFix" + setpaths("Z:/WFP/Games/Need For Speed/Need For Speed Underground/", "speed.exe") + files { "textures/NFS/NFSU/icon.rc" } + defines { "IDR_NFSUICON=200" } +project "NFSUnderground2.WidescreenFix" + setpaths("Z:/WFP/Games/Need For Speed/Need For Speed Underground 2/", "speed2.exe") +group "Win32" + +project "Onimusha3.WidescreenFix" + setpaths("Z:/WFP/Games/Onimusha 3/", "ONI3.exe") +project "ParadiseCracked.WidescreenFix" + setpaths("Z:/WFP/Games/Paradise Cracked/", "game.exe") +project "PsiOpsTheMindgateConspiracy.WidescreenFix" + setpaths("Z:/WFP/Games/PSI-OPS/", "PsiOps.exe") +project "Psychonauts.WidescreenFix" + setpaths("Z:/WFP/Games/Psychonauts/", "Psychonauts.exe") + +group "Win32/ResidentEvil" +project "ResidentEvil0.FusionFix" + setpaths("Z:/WFP/Games/ResidentEvil0/", "re0hd.exe", "scripts/") +project "ResidentEvil.FusionFix" + setpaths("Z:/WFP/Games/ResidentEvil/", "bhd.exe", "scripts/") +project "ResidentEvilRevelations.FusionFix" + setpaths("Z:/WFP/Games/ResidentEvilRevelations/", "rerev.exe", "scripts/") +project "ResidentEvilRevelations2.FusionFix" + setpaths("Z:/WFP/Games/ResidentEvilRevelations2/", "rerev2.exe", "scripts/") +project "ResidentEvil5.FusionFix" + setpaths("Z:/WFP/Games/ResidentEvil5/", "re5dx9.exe", "scripts/") +project "ResidentEvil6.FusionFix" + setpaths("Z:/WFP/Games/ResidentEvil6/", "BH6.exe", "scripts/") +group "Win32" + +project "Scarface.FusionFix" + setpaths("Z:/WFP/Games/Scarface/", "scarface.exe", "scripts/") + +project "SecondSight.WidescreenFix" + setpaths("Z:/WFP/Games/Second Sight/", "secondsight.exe") + +group "Win32/SilentHill" +project "SilentHill2.WidescreenFix" + setpaths("Z:/WFP/Games/Silent Hill/Silent Hill 2/", "sh2pc.exe") +project "SilentHill3.WidescreenFix" + setpaths("Z:/WFP/Games/Silent Hill/Silent Hill 3/", "sh3.exe") +project "SilentHill4.WidescreenFix" + setpaths("Z:/WFP/Games/Silent Hill/Silent Hill 4 The Room/", "Silent Hill 4.exe") +group "Win32" + +project "SniperElite.WidescreenFix" + setpaths("Z:/WFP/Games/Sniper Elite/", "SniperElite.exe") + +project "SonicHeroes.WidescreenFix" + setpaths("Z:/WFP/Games/SONICHEROES/", "Tsonic_win.exe") + +group "Win32/SplinterCell" +project "SplinterCell.WidescreenFix" + setpaths("Z:/WFP/Games/Splinter Cell/Splinter Cell/", "system/SplinterCell.exe", "system/scripts/") +project "SplinterCellChaosTheory.WidescreenFix" + setpaths("Z:/WFP/Games/Splinter Cell/Splintercell Chaos Theory/", "system/splintercell3.exe", "system/scripts/") +project "SplinterCellConviction.FusionMod" + setpaths("Z:/WFP/Games/Splinter Cell/Tom Clancy's Splinter Cell Conviction/", "src/system/conviction_game.exe", "src/system/scripts/") +project "SplinterCellDoubleAgent.WidescreenFix" + setpaths("Z:/WFP/Games/Splinter Cell/Splinter Cell - Double Agent/", "SCDA-Offline/System/SplinterCell4.exe", "SCDA-Offline/System/scripts/") + files { "textures/SCDA/icon.rc" } + defines { "IDR_SCDAICON=200" } +project "SplinterCellPandoraTomorrow.WidescreenFix" + setpaths("Z:/WFP/Games/Splinter Cell/Splinter Cell Pandora Tomorrow/", "offline/system/SplinterCell2.exe", "offline/system/scripts/") +group "Win32" + +project "StreetRacingSyndicate.WidescreenFix" + setpaths("Z:/WFP/Games/Street Racing Syndicate/", "Bin/srs.exe", "Bin/scripts/") + +project "TheGodfather.WidescreenFix" + setpaths("Z:/WFP/Games/The Godfather/", "godfather.exe") + +project "TheMatrixPathOfNeo.WidescreenFix" + setpaths("Z:/WFP/Games/The Matrix - Path Of Neo/", "Matrix3.exe") + +project "ThePunisher.WidescreenFix" + setpaths("Z:/WFP/Games/The Punisher/", "pun.exe") + +project "TheSaboteur.FusionFix" + setpaths("Z:/WFP/Games/The Saboteur/", "Saboteur.exe") + +project "TheSuffering.WidescreenFix" + setpaths("Z:/WFP/Games/The Suffering/The Suffering/", "suffering.exe") + +group "Win32/TonyHawks" +project "TonyHawksAmericanWasteland.WidescreenFix" + setpaths("Z:/WFP/Games/Tony Hawks/Tony Hawk's American Wasteland/", "Game/THAW.exe", "Game/scripts/") +project "TonyHawksProSkater2.WidescreenFix" + setpaths("Z:/WFP/Games/Tony Hawks/THPS2/", "THawk2.exe") +project "TonyHawksProSkater3.WidescreenFix" + setpaths("Z:/WFP/Games/Tony Hawks/Pro Skater 3/", "Skate3.exe") +project "TonyHawksProSkater4.WidescreenFix" + setpaths("Z:/WFP/Games/Tony Hawks/Tony Hawks Pro Skater 4/", "Game/Skate4.exe", "Game/scripts/") +project "TonyHawksUnderground.WidescreenFix" + setpaths("Z:/WFP/Games/Tony Hawks/Tony Hawk's Underground/", "Game/THUG.exe", "Game/scripts/") +project "TonyHawksUnderground2.WidescreenFix" + setpaths("Z:/WFP/Games/Tony Hawks/Tony Hawk's Underground 2/", "Game/THUG2.exe", "Game/scripts/") +group "Win32" + +project "TotalOverdose.WidescreenFix" + setpaths("Z:/WFP/Games/Total Overdose/", "TOD.exe") + +project "TrueCrimeNewYorkCity.WidescreenFix" + setpaths("Z:/WFP/Games/True Crime New York City/", "True Crime New York City.exe") + +project "TrueCrimeStreetsofLA.WidescreenFix" + setpaths("Z:/WFP/Games/True Crime Streets of LA/", "TrueCrimeMB.exe") + +project "UltimateSpiderMan.WidescreenFix" + setpaths("Z:/WFP/Games/Ultimate Spider-Man/", "USM.exe") +group "" + +group "PCSX2F" +project "Burnout3.PCSX2F.WidescreenFix" + kind "Makefile" + add_ps2sdk() + targetextension ".elf" + setbuildpaths_ps2("Z:/GitHub/PCSX2-Fork-With-Plugins/bin/", "pcsx2x64.exe", "PLUGINS/", "%{wks.location}/../external/ps2sdk/ee/bin/vsmake.ps1", "%{wks.location}/../source/%{prj.name}/", "Burnout3.PCSX2F.WidescreenFix") + writemakefile_ps2("Burnout3.PCSX2F.WidescreenFix", "PLUGINS/", "0x02100000", "-l:libc.a -l:libm.a -l:libgcc.a", "../../includes/pcsx2/log.o", + "../../includes/pcsx2/memalloc.o", "../../includes/pcsx2/patterns.o", "../../includes/pcsx2/injector.o", "../../includes/pcsx2/rini.o", + "../../includes/pcsx2/inireader.o", "../../includes/pcsx2/mips.o") + writelinkfile_ps2("Burnout3.PCSX2F.WidescreenFix") + +group "PCSX2F/GrandTheftAuto" project "GTALCS.PCSX2F.WidescreenFix" kind "Makefile" dependson { "Burnout3.PCSX2F.WidescreenFix" } - includedirs { "external/ps2sdk/ps2sdk/ee" } - files { "source/%{prj.name}/*.h" } - files { "source/%{prj.name}/*.c", "source/%{prj.name}/makefile" } + add_ps2sdk() targetextension ".elf" setbuildpaths_ps2("Z:/GitHub/PCSX2-Fork-With-Plugins/bin/", "pcsx2x64.exe", "PLUGINS/", "%{wks.location}/../external/ps2sdk/ee/bin/vsmake.ps1", "%{wks.location}/../source/%{prj.name}/", "GTALCS.PCSX2F.WidescreenFix") writemakefile_ps2("GTALCS.PCSX2F.WidescreenFix", "PLUGINS/", "0x02100000", "-l:libc.a -l:libm.a -l:libgcc.a", "lodl.o", "cpad.o", "../../includes/pcsx2/log.o", "../../includes/pcsx2/memalloc.o", "../../includes/pcsx2/patterns.o", "../../includes/pcsx2/injector.o", "../../includes/pcsx2/rini.o", "../../includes/pcsx2/inireader.o", "../../includes/pcsx2/mips.o") writelinkfile_ps2("GTALCS.PCSX2F.WidescreenFix") + project "GTAVCS.PCSX2F.WidescreenFix" kind "Makefile" dependson { "GTALCS.PCSX2F.WidescreenFix" } - includedirs { "external/ps2sdk/ps2sdk/ee" } - files { "source/%{prj.name}/*.h" } - files { "source/%{prj.name}/*.c", "source/%{prj.name}/makefile" } + add_ps2sdk() targetextension ".elf" setbuildpaths_ps2("Z:/GitHub/PCSX2-Fork-With-Plugins/bin/", "pcsx2x64.exe", "PLUGINS/", "%{wks.location}/../external/ps2sdk/ee/bin/vsmake.ps1", "%{wks.location}/../source/%{prj.name}/", "GTAVCS.PCSX2F.WidescreenFix") writemakefile_ps2("GTAVCS.PCSX2F.WidescreenFix", "PLUGINS/", "0x02100000", "-l:libc.a", "cpad.o", "ckey.o", "../../includes/pcsx2/memalloc.o", "../../includes/pcsx2/patterns.o", "../../includes/pcsx2/injector.o", "../../includes/pcsx2/rini.o","../../includes/pcsx2/inireader.o", "../../includes/pcsx2/mips.o") writelinkfile_ps2("GTAVCS.PCSX2F.WidescreenFix") + project "GTAVCS.PCSX2F.Project2DFX" kind "Makefile" dependson { "GTAVCS.PCSX2F.WidescreenFix" } - includedirs { "external/ps2sdk/ps2sdk/ee" } - files { "source/%{prj.name}/*.h" } - files { "source/%{prj.name}/*.c", "source/%{prj.name}/makefile" } + add_ps2sdk() targetextension ".elf" setbuildpaths_ps2("Z:/GitHub/PCSX2-Fork-With-Plugins/bin/", "pcsx2x64.exe", "PLUGINS/", "%{wks.location}/../external/ps2sdk/ee/bin/vsmake.ps1", "%{wks.location}/../source/%{prj.name}/", "GTAVCS.PCSX2F.Project2DFX") writemakefile_ps2("GTAVCS.PCSX2F.Project2DFX", "PLUGINS/", "0x03100000", "-l:libc.a", "lodl.o", "../../includes/pcsx2/memalloc.o", "../../includes/pcsx2/patterns.o", "../../includes/pcsx2/injector.o", "../../includes/pcsx2/rini.o","../../includes/pcsx2/inireader.o", "../../includes/pcsx2/mips.o") writelinkfile_ps2("GTAVCS.PCSX2F.Project2DFX") + project "GTAVCS.PCSX2F.ImVehLM" kind "Makefile" dependson { "GTAVCS.PCSX2F.Project2DFX" } - includedirs { "external/ps2sdk/ps2sdk/ee" } - files { "source/%{prj.name}/*.h" } - files { "source/%{prj.name}/*.c", "source/%{prj.name}/makefile" } + add_ps2sdk() targetextension ".elf" setbuildpaths_ps2("Z:/GitHub/PCSX2-Fork-With-Plugins/bin/", "pcsx2x64.exe", "PLUGINS/", "%{wks.location}/../external/ps2sdk/ee/bin/vsmake.ps1", "%{wks.location}/../source/%{prj.name}/", "GTAVCS.PCSX2F.ImVehLM") writemakefile_ps2("GTAVCS.PCSX2F.ImVehLM", "PLUGINS/", "0x06000000", "-l:libc.a", "../../includes/pcsx2/memalloc.o", "../../includes/pcsx2/patterns.o", "../../includes/pcsx2/injector.o", "../../includes/pcsx2/rini.o","../../includes/pcsx2/inireader.o", "../../includes/pcsx2/mips.o") writelinkfile_ps2("GTAVCS.PCSX2F.ImVehLM") +group "PCSX2F" + +project "KnightRider.PCSX2F.WidescreenFix" + kind "Makefile" + dependson { "GTAVCS.PCSX2F.ImVehLM" } + add_ps2sdk() + targetextension ".elf" + setbuildpaths_ps2("Z:/GitHub/PCSX2-Fork-With-Plugins/bin/", "pcsx2x64.exe", "PLUGINS/", "%{wks.location}/../external/ps2sdk/ee/bin/vsmake.ps1", "%{wks.location}/../source/%{prj.name}/", "KnightRider.PCSX2F.WidescreenFix") + writemakefile_ps2("KnightRider.PCSX2F.WidescreenFix", "PLUGINS/", "0x02100000", "-l:libc.a -l:libm.a -l:libgcc.a", "../../includes/pcsx2/log.o", + "../../includes/pcsx2/memalloc.o", "../../includes/pcsx2/patterns.o", "../../includes/pcsx2/injector.o", "../../includes/pcsx2/rini.o", + "../../includes/pcsx2/inireader.o", "../../includes/pcsx2/mips.o") + writelinkfile_ps2("KnightRider.PCSX2F.WidescreenFix") + +project "PCSX2F.XboxRainDroplets" + kind "Makefile" + add_ps2sdk() + targetextension ".elf" + setbuildpaths_ps2("Z:/GitHub/PCSX2-Fork-With-Plugins/bin/", "pcsx2x64.exe", "PLUGINS/", "%{wks.location}/../external/ps2sdk/ee/bin/vsmake.ps1", "%{wks.location}/../source/%{prj.name}/", "PCSX2F.XboxRainDroplets") + writemakefile_ps2("PCSX2F.XboxRainDroplets", "PLUGINS/", "0x03F00000", "-l:libc.a", "../../includes/pcsx2/memalloc.o", + "../../includes/pcsx2/patterns.o", "../../includes/pcsx2/injector.o", "../../includes/pcsx2/rini.o","../../includes/pcsx2/inireader.o", + "../../includes/pcsx2/mips.o") + writelinkfile_ps2("PCSX2F.XboxRainDroplets") + +project "SplinterCellDoubleAgent.PCSX2F.WidescreenFix" + kind "Makefile" + dependson { "KnightRider.PCSX2F.WidescreenFix" } + add_ps2sdk() + targetextension ".elf" + setbuildpaths_ps2("Z:/GitHub/PCSX2-Fork-With-Plugins/bin/", "pcsx2x64.exe", "PLUGINS/", "%{wks.location}/../external/ps2sdk/ee/bin/vsmake.ps1", "%{wks.location}/../source/%{prj.name}/", "SplinterCellDoubleAgent.PCSX2F.WidescreenFix") + writemakefile_ps2("SplinterCellDoubleAgent.PCSX2F.WidescreenFix", "PLUGINS/", "0x02100000", "-l:libc.a -l:libm.a -l:libgcc.a", "../../includes/pcsx2/log.o", + "../../includes/pcsx2/memalloc.o", "../../includes/pcsx2/patterns.o", "../../includes/pcsx2/injector.o", "../../includes/pcsx2/rini.o", + "../../includes/pcsx2/inireader.o", "../../includes/pcsx2/mips.o") + writelinkfile_ps2("SplinterCellDoubleAgent.PCSX2F.WidescreenFix") + +project "TrueCrimeNewYorkCity.PCSX2F.WidescreenFix" + kind "Makefile" + dependson { "SplinterCellDoubleAgent.PCSX2F.WidescreenFix" } + add_ps2sdk() + targetextension ".elf" + setbuildpaths_ps2("Z:/GitHub/PCSX2-Fork-With-Plugins/bin/", "pcsx2x64.exe", "PLUGINS/", "%{wks.location}/../external/ps2sdk/ee/bin/vsmake.ps1", "%{wks.location}/../source/%{prj.name}/", "TrueCrimeNewYorkCity.PCSX2F.WidescreenFix") + writemakefile_ps2("TrueCrimeNewYorkCity.PCSX2F.WidescreenFix", "PLUGINS/", "0x02100000", "-l:libc.a -l:libm.a -l:libgcc.a", "../../includes/pcsx2/log.o", + "../../includes/pcsx2/memalloc.o", "../../includes/pcsx2/patterns.o", "../../includes/pcsx2/injector.o", "../../includes/pcsx2/rini.o", + "../../includes/pcsx2/inireader.o", "../../includes/pcsx2/mips.o") + writelinkfile_ps2("TrueCrimeNewYorkCity.PCSX2F.WidescreenFix") +group "" + +group "PPSSPP" +group "PPSSPP/GrandTheftAuto" project "GTALCS.PPSSPP.WidescreenFix" kind "Makefile" add_pspsdk() targetextension ".prx" setbuildpaths_psp("Z:/WFP/Games/PPSSPP/", "PPSSPPWindows64.exe", "memstick/PSP/PLUGINS/GTALCS.PPSSPP.WidescreenFix/", "%{wks.location}/../external/pspsdk/vsmake.ps1", "%{wks.location}/../source/%{prj.name}/", "GTALCS.PPSSPP.WidescreenFix") writemakefile_psp("GTALCS.PPSSPP.WidescreenFix") + project "GTALCS.PPSSPP.Project2DFX" kind "Makefile" dependson { "GTALCS.PPSSPP.WidescreenFix" } @@ -389,6 +642,7 @@ project "GTALCS.PPSSPP.Project2DFX" targetextension ".prx" setbuildpaths_psp("Z:/WFP/Games/PPSSPP/", "PPSSPPWindows64.exe", "memstick/PSP/PLUGINS/GTALCS.PPSSPP.Project2DFX/", "%{wks.location}/../external/pspsdk/vsmake.ps1", "%{wks.location}/../source/%{prj.name}/", "GTALCS.PPSSPP.Project2DFX") writemakefile_psp("GTALCS.PPSSPP.Project2DFX", "lodl.c") + project "GTALCS.PPSSPP.ImVehLM" kind "Makefile" dependson { "GTALCS.PPSSPP.Project2DFX" } @@ -396,6 +650,7 @@ project "GTALCS.PPSSPP.ImVehLM" targetextension ".prx" setbuildpaths_psp("Z:/WFP/Games/PPSSPP/", "PPSSPPWindows64.exe", "memstick/PSP/PLUGINS/GTALCS.PPSSPP.ImVehLM/", "%{wks.location}/../external/pspsdk/vsmake.ps1", "%{wks.location}/../source/%{prj.name}/", "GTALCS.PPSSPP.ImVehLM") writemakefile_psp("GTALCS.PPSSPP.ImVehLM") + project "GTAVCS.PPSSPP.WidescreenFix" kind "Makefile" dependson { "GTALCS.PPSSPP.ImVehLM" } @@ -403,6 +658,7 @@ project "GTAVCS.PPSSPP.WidescreenFix" targetextension ".prx" setbuildpaths_psp("Z:/WFP/Games/PPSSPP/", "PPSSPPWindows64.exe", "memstick/PSP/PLUGINS/GTAVCS.PPSSPP.WidescreenFix/", "%{wks.location}/../external/pspsdk/vsmake.ps1", "%{wks.location}/../source/%{prj.name}/", "GTAVCS.PPSSPP.WidescreenFix") writemakefile_psp("GTAVCS.PPSSPP.WidescreenFix") + project "GTAVCS.PPSSPP.Project2DFX" kind "Makefile" dependson { "GTAVCS.PPSSPP.WidescreenFix" } @@ -410,6 +666,7 @@ project "GTAVCS.PPSSPP.Project2DFX" targetextension ".prx" setbuildpaths_psp("Z:/WFP/Games/PPSSPP/", "PPSSPPWindows64.exe", "memstick/PSP/PLUGINS/GTAVCS.PPSSPP.Project2DFX/", "%{wks.location}/../external/pspsdk/vsmake.ps1", "%{wks.location}/../source/%{prj.name}/", "GTAVCS.PPSSPP.Project2DFX") writemakefile_psp("GTAVCS.PPSSPP.Project2DFX", "lodl.c") + project "GTAVCS.PPSSPP.ImVehLM" kind "Makefile" dependson { "GTAVCS.PPSSPP.Project2DFX" } @@ -417,6 +674,7 @@ project "GTAVCS.PPSSPP.ImVehLM" targetextension ".prx" setbuildpaths_psp("Z:/WFP/Games/PPSSPP/", "PPSSPPWindows64.exe", "memstick/PSP/PLUGINS/GTAVCS.PPSSPP.ImVehLM/", "%{wks.location}/../external/pspsdk/vsmake.ps1", "%{wks.location}/../source/%{prj.name}/", "GTAVCS.PPSSPP.ImVehLM") writemakefile_psp("GTAVCS.PPSSPP.ImVehLM") + project "GTAVCS.PPSSPP.GamepadIcons" kind "Makefile" dependson { "GTAVCS.PPSSPP.ImVehLM" } @@ -424,6 +682,7 @@ project "GTAVCS.PPSSPP.GamepadIcons" targetextension ".prx" setbuildpaths_psp("Z:/WFP/Games/PPSSPP/", "PPSSPPWindows64.exe", "memstick/PSP/PLUGINS/GTAVCS.PPSSPP.GamepadIcons/", "%{wks.location}/../external/pspsdk/vsmake.ps1", "%{wks.location}/../source/%{prj.name}/", "GTAVCS.PPSSPP.GamepadIcons") writemakefile_psp("GTAVCS.PPSSPP.GamepadIcons") + project "GTACTW.PPSSPP.FusionMod" kind "Makefile" dependson { "GTAVCS.PPSSPP.ImVehLM" } @@ -431,55 +690,8 @@ project "GTACTW.PPSSPP.FusionMod" targetextension ".prx" setbuildpaths_psp("Z:/WFP/Games/PPSSPP/", "PPSSPPWindows64.exe", "memstick/PSP/PLUGINS/GTACTW.PPSSPP.FusionMod/", "%{wks.location}/../external/pspsdk/vsmake.ps1", "%{wks.location}/../source/%{prj.name}/", "GTACTW.PPSSPP.FusionMod") writemakefile_psp("GTACTW.PPSSPP.FusionMod") -project "GTASA.UWP.Test" - setpaths("Z:/WFP/Games/GTASAUWP/", "GTASA.exe") -project "Gun.WidescreenFix" - setpaths("Z:/WFP/Games/GUN/", "Gun.exe") -project "HiddenandDangerous2.WidescreenFix" - setpaths("Z:/WFP/Games/Hidden and Dangerous 2/", "hd2.exe") -project "JustCause.WidescreenFix" - setpaths("Z:/WFP/Games/Just Cause/", "JustCause.exe") -project "KingKong.WidescreenFix" - setpaths("Z:/WFP/Games/King Kong/", "CheckApplication.exe") -project "KnightRider.WidescreenFix" - configurations { "Release", "Debug" } - setpaths("Z:/WFP/Games/Knight Rider/", "Knight Rider.exe") -project "KnightRider.PCSX2F.WidescreenFix" - kind "Makefile" - dependson { "GTAVCS.PCSX2F.ImVehLM" } - includedirs { "external/ps2sdk/ps2sdk/ee" } - files { "source/%{prj.name}/*.h" } - files { "source/%{prj.name}/*.c", "source/%{prj.name}/makefile" } - targetextension ".elf" - setbuildpaths_ps2("Z:/GitHub/PCSX2-Fork-With-Plugins/bin/", "pcsx2x64.exe", "PLUGINS/", "%{wks.location}/../external/ps2sdk/ee/bin/vsmake.ps1", "%{wks.location}/../source/%{prj.name}/", "KnightRider.PCSX2F.WidescreenFix") - writemakefile_ps2("KnightRider.PCSX2F.WidescreenFix", "PLUGINS/", "0x02100000", "-l:libc.a -l:libm.a -l:libgcc.a", "../../includes/pcsx2/log.o", - "../../includes/pcsx2/memalloc.o", "../../includes/pcsx2/patterns.o", "../../includes/pcsx2/injector.o", "../../includes/pcsx2/rini.o", - "../../includes/pcsx2/inireader.o", "../../includes/pcsx2/mips.o") - writelinkfile_ps2("KnightRider.PCSX2F.WidescreenFix") -project "KnightRider2.WidescreenFix" - configurations { "Release", "Debug" } - setpaths("Z:/WFP/Games/Knight Rider 2/", "KR2.exe") -project "LARush.WidescreenFix" - setpaths("Z:/WFP/Games/LA Rush/", "LARush.exe", "plugins/") -project "Mafia.GenericFix" - setpaths("Z:/WFP/Games/Mafia/", "Setup.exe") - targetdir "data/Mafia.WidescreenFix/scripts" -project "Mafia.WidescreenFix" - setpaths("Z:/WFP/Games/Mafia/", "GameV12.exe") -project "Mafia.CXBXR.WidescreenFix" - configurations { "ReleaseCXBXR", "DebugCXBXR" } - setpaths("Z:/WFP/Games/CXBXR/", "cxbx.exe") - files { "includes/cxbxr/cxbxr.h" } -project "Manhunt.WidescreenFix" - buildoptions { "/Zc:strictStrings-" } - includedirs { "source/%{prj.name}/inc" } - files { "source/%{prj.name}/**/*.cpp" } - removefiles { "includes/stdafx.h", "includes/stdafx.cpp" } - setpaths("Z:/WFP/Games/Manhunt/", "manhunt.exe") -project "MassEffectTrilogy.FOVFix" - setpaths("Z:/WFP/Games/Mass Effect/Mass Effect 2/Binaries/", "MassEffect2.exe", "/") -project "MaxPayne.WidescreenFix" - setpaths("Z:/WFP/Games/Max Payne/Max Payne/", "MaxPayne.exe") +group "PPSSPP" + project "MidnightClubLARemix.PPSSPP.FusionMod" kind "Makefile" dependson { "GTACTW.PPSSPP.FusionMod" } @@ -487,110 +699,14 @@ project "MidnightClubLARemix.PPSSPP.FusionMod" targetextension ".prx" setbuildpaths_psp("Z:/WFP/Games/PPSSPP/", "PPSSPPWindows64.exe", "memstick/PSP/PLUGINS/MidnightClubLARemix.PPSSPP.FusionMod/", "%{wks.location}/../external/pspsdk/vsmake.ps1", "%{wks.location}/../source/%{prj.name}/", "MidnightClubLARemix.PPSSPP.FusionMod") writemakefile_psp("MidnightClubLARemix.PPSSPP.FusionMod") + project "PPSSPP.XboxRainDroplets" kind "Makefile" add_pspsdk() targetextension ".prx" setbuildpaths_psp("Z:/WFP/Games/PPSSPP/", "PPSSPPWindows64.exe", "memstick/PSP/PLUGINS/PPSSPP.XboxRainDroplets/", "%{wks.location}/../external/pspsdk/vsmake.ps1", "%{wks.location}/../source/%{prj.name}/", "PPSSPP.XboxRainDroplets") writemakefile_psp("PPSSPP.XboxRainDroplets") -project "PCSX2F.XboxRainDroplets" - kind "Makefile" - includedirs { "external/ps2sdk/ps2sdk/ee" } - files { "source/%{prj.name}/*.h" } - files { "source/%{prj.name}/*.c", "source/%{prj.name}/makefile" } - targetextension ".elf" - setbuildpaths_ps2("Z:/GitHub/PCSX2-Fork-With-Plugins/bin/", "pcsx2x64.exe", "PLUGINS/", "%{wks.location}/../external/ps2sdk/ee/bin/vsmake.ps1", "%{wks.location}/../source/%{prj.name}/", "PCSX2F.XboxRainDroplets") - writemakefile_ps2("PCSX2F.XboxRainDroplets", "PLUGINS/", "0x03F00000", "-l:libc.a", "../../includes/pcsx2/memalloc.o", - "../../includes/pcsx2/patterns.o", "../../includes/pcsx2/injector.o", "../../includes/pcsx2/rini.o","../../includes/pcsx2/inireader.o", - "../../includes/pcsx2/mips.o") - writelinkfile_ps2("PCSX2F.XboxRainDroplets") -project "MaxPayne2.WidescreenFix" - setpaths("Z:/WFP/Games/Max Payne/Max Payne 2 The Fall of Max Payne/", "MaxPayne2.exe") -project "NFSCarbon.WidescreenFix" - setpaths("Z:/WFP/Games/Need For Speed/Need for Speed Carbon/", "NFSC.exe") -project "NFSMostWanted.WidescreenFix" - setpaths("Z:/WFP/Games/Need For Speed/Need for Speed Most Wanted/", "speed.exe") -project "NFSProStreet.GenericFix" - setpaths("Z:/WFP/Games/Need For Speed/Need for Speed ProStreet/", "nfsps.exe") -project "NFSUndercover.GenericFix" - setpaths("Z:/WFP/Games/Need For Speed/Need for Speed Undercover/", "nfs.exe") -project "NFSUnderground.WidescreenFix" - setpaths("Z:/WFP/Games/Need For Speed/Need For Speed Underground/", "speed.exe") - files { "textures/NFS/NFSU/icon.rc" } - defines { "IDR_NFSUICON=200" } -project "NFSUnderground2.WidescreenFix" - setpaths("Z:/WFP/Games/Need For Speed/Need For Speed Underground 2/", "speed2.exe") -project "Onimusha3.WidescreenFix" - setpaths("Z:/WFP/Games/Onimusha 3/", "ONI3.exe") -project "ParadiseCracked.WidescreenFix" - setpaths("Z:/WFP/Games/Paradise Cracked/", "game.exe") -project "PsiOpsTheMindgateConspiracy.WidescreenFix" - setpaths("Z:/WFP/Games/PSI-OPS/", "PsiOps.exe") -project "Psychonauts.WidescreenFix" - setpaths("Z:/WFP/Games/Psychonauts/", "Psychonauts.exe") -project "ResidentEvil0.FusionFix" - setpaths("Z:/WFP/Games/ResidentEvil0/", "re0hd.exe", "scripts/") -project "ResidentEvil.FusionFix" - setpaths("Z:/WFP/Games/ResidentEvil/", "bhd.exe", "scripts/") -project "ResidentEvil2.RE3.Dolphin.FusionMod" - add_kananlib() - platforms { "Win64" } - architecture "x64" - setpaths("Z:/WFP/Games/Dolphin-x64/", "Dolphin.exe", "scripts/") -project "ResidentEvilRevelations.FusionFix" - setpaths("Z:/WFP/Games/ResidentEvilRevelations/", "rerev.exe", "scripts/") -project "ResidentEvilRevelations2.FusionFix" - setpaths("Z:/WFP/Games/ResidentEvilRevelations2/", "rerev2.exe", "scripts/") -project "ResidentEvil4.FusionMod" - platforms { "Win64" } - architecture "x64" - setpaths("Z:/WFP/Games/ResidentEvil4/", "re4.exe", "scripts/") -project "ResidentEvil5.FusionFix" - setpaths("Z:/WFP/Games/ResidentEvil5/", "re5dx9.exe", "scripts/") -project "ResidentEvil6.FusionFix" - setpaths("Z:/WFP/Games/ResidentEvil6/", "BH6.exe", "scripts/") -project "Scarface.FusionFix" - setpaths("Z:/WFP/Games/Scarface/", "scarface.exe", "scripts/") -project "SecondSight.WidescreenFix" - setpaths("Z:/WFP/Games/Second Sight/", "secondsight.exe") -project "SilentHill2.WidescreenFix" - setpaths("Z:/WFP/Games/Silent Hill/Silent Hill 2/", "sh2pc.exe") -project "SilentHill3.WidescreenFix" - setpaths("Z:/WFP/Games/Silent Hill/Silent Hill 3/", "sh3.exe") -project "SilentHill4.WidescreenFix" - setpaths("Z:/WFP/Games/Silent Hill/Silent Hill 4 The Room/", "Silent Hill 4.exe") -project "SniperElite.WidescreenFix" - setpaths("Z:/WFP/Games/Sniper Elite/", "SniperElite.exe") -project "SonicHeroes.WidescreenFix" - setpaths("Z:/WFP/Games/SONICHEROES/", "Tsonic_win.exe") -project "SplinterCell.WidescreenFix" - setpaths("Z:/WFP/Games/Splinter Cell/Splinter Cell/", "system/SplinterCell.exe", "system/scripts/") -project "SplinterCellChaosTheory.WidescreenFix" - setpaths("Z:/WFP/Games/Splinter Cell/Splintercell Chaos Theory/", "system/splintercell3.exe", "system/scripts/") -project "SplinterCellConviction.FusionMod" - setpaths("Z:/WFP/Games/Splinter Cell/Tom Clancy's Splinter Cell Conviction/", "src/system/conviction_game.exe", "src/system/scripts/") -project "SplinterCellDoubleAgent.WidescreenFix" - setpaths("Z:/WFP/Games/Splinter Cell/Splinter Cell - Double Agent/", "SCDA-Offline/System/SplinterCell4.exe", "SCDA-Offline/System/scripts/") - files { "textures/SCDA/icon.rc" } - defines { "IDR_SCDAICON=200" } -project "SplinterCellDoubleAgent.PCSX2F.WidescreenFix" - kind "Makefile" - dependson { "KnightRider.PCSX2F.WidescreenFix" } - includedirs { "external/ps2sdk/ps2sdk/ee" } - files { "source/%{prj.name}/*.h" } - files { "source/%{prj.name}/*.c", "source/%{prj.name}/makefile" } - targetextension ".elf" - setbuildpaths_ps2("Z:/GitHub/PCSX2-Fork-With-Plugins/bin/", "pcsx2x64.exe", "PLUGINS/", "%{wks.location}/../external/ps2sdk/ee/bin/vsmake.ps1", "%{wks.location}/../source/%{prj.name}/", "SplinterCellDoubleAgent.PCSX2F.WidescreenFix") - writemakefile_ps2("SplinterCellDoubleAgent.PCSX2F.WidescreenFix", "PLUGINS/", "0x02100000", "-l:libc.a -l:libm.a -l:libgcc.a", "../../includes/pcsx2/log.o", - "../../includes/pcsx2/memalloc.o", "../../includes/pcsx2/patterns.o", "../../includes/pcsx2/injector.o", "../../includes/pcsx2/rini.o", - "../../includes/pcsx2/inireader.o", "../../includes/pcsx2/mips.o") - writelinkfile_ps2("SplinterCellDoubleAgent.PCSX2F.WidescreenFix") -project "SplinterCellDoubleAgent.CXBXR.WidescreenFix" - configurations { "ReleaseCXBXR", "DebugCXBXR" } - setpaths("Z:/WFP/Games/CXBXR/", "cxbx.exe") - files { "includes/cxbxr/cxbxr.h" } -project "SplinterCellPandoraTomorrow.WidescreenFix" - setpaths("Z:/WFP/Games/Splinter Cell/Splinter Cell Pandora Tomorrow/", "offline/system/SplinterCell2.exe", "offline/system/scripts/") + project "SplinterCellEssentials.PPSSPP.FusionMod" kind "Makefile" dependson { "MidnightClubLARemix.PPSSPP.FusionMod" } @@ -598,6 +714,8 @@ project "SplinterCellEssentials.PPSSPP.FusionMod" targetextension ".prx" setbuildpaths_psp("Z:/WFP/Games/PPSSPP/", "PPSSPPWindows64.exe", "memstick/PSP/PLUGINS/SplinterCellEssentials.PPSSPP.FusionMod/", "%{wks.location}/../external/pspsdk/vsmake.ps1", "%{wks.location}/../source/%{prj.name}/", "SplinterCellEssentials.PPSSPP.FusionMod") writemakefile_psp("SplinterCellEssentials.PPSSPP.FusionMod") + +group "PPSSPP/SOCOM" project "SOCOM.FireteamBravo.PPSSPP.FusionMod" kind "Makefile" dependson { "SplinterCellEssentials.PPSSPP.FusionMod" } @@ -619,24 +737,8 @@ project "SOCOM.FireteamBravo3.PPSSPP.FusionMod" targetextension ".prx" setbuildpaths_psp("Z:/WFP/Games/PPSSPP/", "PPSSPPWindows64.exe", "memstick/PSP/PLUGINS/SOCOM.FireteamBravo3.PPSSPP.FusionMod/", "%{wks.location}/../external/pspsdk/vsmake.ps1", "%{wks.location}/../source/%{prj.name}/", "SOCOM.FireteamBravo3.PPSSPP.FusionMod") writemakefile_psp("SOCOM.FireteamBravo3.PPSSPP.FusionMod") -project "SpyroReignitedTrilogy.WidescreenFix" - platforms { "Win64" } - architecture "x64" - setpaths("Z:/WFP/Games/Spyro Reignited Trilogy/", "Falcon/Binaries/Win64/Spyro-Win64-Shipping.exe", "Falcon/Binaries/Win64/scripts/") -project "StreetRacingSyndicate.WidescreenFix" - setpaths("Z:/WFP/Games/Street Racing Syndicate/", "Bin/srs.exe", "Bin/scripts/") -project "StubbstheZombie.WidescreenFix" - setpaths("Z:/WFP/Games/Stubbs the Zombie/", "Stubbs.exe") -project "TheGodfather.WidescreenFix" - setpaths("Z:/WFP/Games/The Godfather/", "godfather.exe") -project "TheMatrixPathOfNeo.WidescreenFix" - setpaths("Z:/WFP/Games/The Matrix - Path Of Neo/", "Matrix3.exe") -project "ThePunisher.WidescreenFix" - setpaths("Z:/WFP/Games/The Punisher/", "pun.exe") -project "TheSaboteur.FusionFix" - setpaths("Z:/WFP/Games/The Saboteur/", "Saboteur.exe") -project "TheSuffering.WidescreenFix" - setpaths("Z:/WFP/Games/The Suffering/The Suffering/", "suffering.exe") +group "PPSSPP" + project "TheWarriors.PPSSPP.FusionMod" kind "Makefile" dependson { "SOCOM.FireteamBravo3.PPSSPP.FusionMod" } @@ -644,35 +746,25 @@ project "TheWarriors.PPSSPP.FusionMod" targetextension ".prx" setbuildpaths_psp("Z:/WFP/Games/PPSSPP/", "PPSSPPWindows64.exe", "memstick/PSP/PLUGINS/TheWarriors.PPSSPP.FusionMod/", "%{wks.location}/../external/pspsdk/vsmake.ps1", "%{wks.location}/../source/%{prj.name}/", "TheWarriors.PPSSPP.FusionMod") writemakefile_psp("TheWarriors.PPSSPP.FusionMod") -project "TonyHawksAmericanWasteland.WidescreenFix" - setpaths("Z:/WFP/Games/Tony Hawks/Tony Hawk's American Wasteland/", "Game/THAW.exe", "Game/scripts/") -project "TonyHawksProSkater2.WidescreenFix" - setpaths("Z:/WFP/Games/Tony Hawks/THPS2/", "THawk2.exe") -project "TonyHawksProSkater3.WidescreenFix" - setpaths("Z:/WFP/Games/Tony Hawks/Pro Skater 3/", "Skate3.exe") -project "TonyHawksProSkater4.WidescreenFix" - setpaths("Z:/WFP/Games/Tony Hawks/Tony Hawks Pro Skater 4/", "Game/Skate4.exe", "Game/scripts/") -project "TonyHawksUnderground.WidescreenFix" - setpaths("Z:/WFP/Games/Tony Hawks/Tony Hawk's Underground/", "Game/THUG.exe", "Game/scripts/") -project "TonyHawksUnderground2.WidescreenFix" - setpaths("Z:/WFP/Games/Tony Hawks/Tony Hawk's Underground 2/", "Game/THUG2.exe", "Game/scripts/") -project "TotalOverdose.WidescreenFix" - setpaths("Z:/WFP/Games/Total Overdose/", "TOD.exe") -project "TrueCrimeNewYorkCity.WidescreenFix" - setpaths("Z:/WFP/Games/True Crime New York City/", "True Crime New York City.exe") -project "TrueCrimeNewYorkCity.PCSX2F.WidescreenFix" - kind "Makefile" - dependson { "SplinterCellDoubleAgent.PCSX2F.WidescreenFix" } - includedirs { "external/ps2sdk/ps2sdk/ee" } - files { "source/%{prj.name}/*.h" } - files { "source/%{prj.name}/*.c", "source/%{prj.name}/makefile" } - targetextension ".elf" - setbuildpaths_ps2("Z:/GitHub/PCSX2-Fork-With-Plugins/bin/", "pcsx2x64.exe", "PLUGINS/", "%{wks.location}/../external/ps2sdk/ee/bin/vsmake.ps1", "%{wks.location}/../source/%{prj.name}/", "TrueCrimeNewYorkCity.PCSX2F.WidescreenFix") - writemakefile_ps2("TrueCrimeNewYorkCity.PCSX2F.WidescreenFix", "PLUGINS/", "0x02100000", "-l:libc.a -l:libm.a -l:libgcc.a", "../../includes/pcsx2/log.o", - "../../includes/pcsx2/memalloc.o", "../../includes/pcsx2/patterns.o", "../../includes/pcsx2/injector.o", "../../includes/pcsx2/rini.o", - "../../includes/pcsx2/inireader.o", "../../includes/pcsx2/mips.o") - writelinkfile_ps2("TrueCrimeNewYorkCity.PCSX2F.WidescreenFix") -project "TrueCrimeStreetsofLA.WidescreenFix" - setpaths("Z:/WFP/Games/True Crime Streets of LA/", "TrueCrimeMB.exe") -project "UltimateSpiderMan.WidescreenFix" - setpaths("Z:/WFP/Games/Ultimate Spider-Man/", "USM.exe") +group "" + +group "Dolphin" +project "ResidentEvil2.RE3.Dolphin.FusionMod" + add_kananlib() + platforms { "Win64" } + architecture "x64" + setpaths("Z:/WFP/Games/Dolphin-x64/", "Dolphin.exe", "scripts/") +group "" + +group "CXBXR" +project "Mafia.CXBXR.WidescreenFix" + configurations { "ReleaseCXBXR", "DebugCXBXR" } + setpaths("Z:/WFP/Games/CXBXR/", "cxbx.exe") + files { "includes/cxbxr/cxbxr.h" } + +project "SplinterCellDoubleAgent.CXBXR.WidescreenFix" + configurations { "ReleaseCXBXR", "DebugCXBXR" } + setpaths("Z:/WFP/Games/CXBXR/", "cxbx.exe") + files { "includes/cxbxr/cxbxr.h" } +group "" +