2
0
mirror of https://github.com/Alia5/GlosSI.git synced 2024-11-09 01:10:24 +00:00
GlosSI/buildViGEmClient.ps1

10 lines
266 B
PowerShell
Raw Normal View History

2021-10-28 13:52:43 +00:00
cd deps/ViGEmClient
git apply ../../ViGEm_BuildConfig.patch
2022-03-07 14:06:40 +00:00
$env:_CL_="/MDd"
2022-01-15 18:17:07 +00:00
msbuild.exe ViGEmCLient.sln /t:Build /p:Configuration=Debug_LIB /p:Platform=x64
2022-03-07 14:06:40 +00:00
$env:_CL_="/MD"
2022-01-15 18:17:07 +00:00
msbuild.exe ViGEmCLient.sln /t:Build /p:Configuration=Release_LIB /p:Platform=x64
2021-10-28 13:52:43 +00:00
cd ../..