Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/Build_Plugin_GTA_SA.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ jobs:
echo ::groupEnd::

echo ::group::Build test plugin
msbuild examples\Test\Test.sln /property:Configuration=Debug /property:Platform=GTASA /m /fileLogger1 /fileLoggerParameters1:warningsOnly;errorsOnly;logfile=output.log
msbuild examples\Test\Test.sln /property:Configuration=Debug /property:Platform=GTA-SA /m /fileLogger1 /fileLoggerParameters1:warningsOnly;errorsOnly;logfile=output.log
powershell -Command "(gc output.log) | sort | get-unique > output.log"
powershell -Command "(gc output.log) -replace ' \d>','' -replace '.:\\a\\plugin-sdk\\plugin-sdk\\','' | Out-File -encoding ASCII output.log"
powershell -Command "foreach($line in Get-Content 'output.log') { $m = $line -match '^(.*)\((\d+),(\d+)\): (\w+) (.*) \[.*\]$'; if ($m) {$m = $Matches; echo ('::'+$m[4]+' file='+$m[1]+',line='+$m[2]+',title=Test plugin compilation::'+$m[5])} else {echo ('::error title=Test plugin compilation::' + $line)} }"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/Build_Plugin_GTA_VC.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ jobs:
echo ::groupEnd::

echo ::group::Build test plugin
msbuild examples\Test\Test.sln /property:Configuration=Debug /property:Platform=GTAVC /m /fileLogger1 /fileLoggerParameters1:warningsOnly;errorsOnly;logfile=output.log
msbuild examples\Test\Test.sln /property:Configuration=Debug /property:Platform=GTA-VC /m /fileLogger1 /fileLoggerParameters1:warningsOnly;errorsOnly;logfile=output.log
powershell -Command "(gc output.log) | sort | get-unique > output.log"
powershell -Command "(gc output.log) -replace ' \d>','' -replace '.:\\a\\plugin-sdk\\plugin-sdk\\','' | Out-File -encoding ASCII output.log"
powershell -Command "foreach($line in Get-Content 'output.log') { $m = $line -match '^(.*)\((\d+),(\d+)\): (\w+) (.*) \[.*\]$'; if ($m) {$m = $Matches; echo ('::'+$m[4]+' file='+$m[1]+',line='+$m[2]+',title=Test plugin compilation::'+$m[5])} else {echo ('::error title=Test plugin compilation::' + $line)} }"
Expand Down
38 changes: 19 additions & 19 deletions tools/Plugin-SDK_Wizard_Config.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,72 +13,72 @@
<name>GTA 2</name>
<envVar>GTA_II_DIR</envVar>
<checkFile>gta2.exe</checkFile>
<project>plugin_ii</project>
<projectOutput>plugin_ii</projectOutput>
<project>Plugin_II</project>
<projectOutput>Plugin_II</projectOutput>
<target>GTA2</target>
</component>

<component>
<name>GTA 3</name>
<envVar>GTA_III_DIR</envVar>
<checkFile>gta3.exe</checkFile>
<project>plugin_iii</project>
<projectOutput>plugin_iii</projectOutput>
<project>Plugin_III</project>
<projectOutput>Plugin_III</projectOutput>
<target>GTA3</target>
</component>

<component>
<name>GTA Vice City</name>
<envVar>GTA_VC_DIR</envVar>
<checkFile>gta-vc.exe</checkFile>
<project>plugin_vc</project>
<projectOutput>plugin_vc</projectOutput>
<project>Plugin_VC</project>
<projectOutput>Plugin_VC</projectOutput>
<target>GTAVC</target>
</component>

<component>
<name>GTA San Andreas</name>
<envVar>GTA_SA_DIR</envVar>
<checkFile>gta_sa.exe</checkFile>
<project>plugin_sa</project>
<projectOutput>plugin</projectOutput>
<project>Plugin_SA</project>
<projectOutput>Plugin</projectOutput>
<target>GTASA</target>
</component>

<component>
<name>GTA 4</name>
<envVar>GTA_IV_DIR</envVar>
<checkFile>GTAIV.exe</checkFile>
<project>plugin_iv</project>
<projectOutput>plugin_iv</projectOutput>
<project>Plugin_IV</project>
<projectOutput>Plugin_IV</projectOutput>
<target>GTA4</target>
</component>

<component>
<name>GTA 3 DE</name>
<envVar>GTA_III_UNREAL_DIR</envVar>
<checkFile>Gameface\Binaries\Win64\LibertyCity.exe</checkFile>
<project>plugin_iii_unreal</project>
<projectOutput>plugin_iii_unreal</projectOutput>
<target>DE-3</target>
<project>Plugin_III_Unreal</project>
<projectOutput>Plugin_III_Unreal</projectOutput>
<target>GTA3_UNREAL</target>
</component>

<component>
<name>GTA Vice City DE</name>
<envVar>GTA_VC_UNREAL_DIR</envVar>
<checkFile>Gameface\Binaries\Win64\ViceCity.exe</checkFile>
<project>plugin_vc_unreal</project>
<projectOutput>plugin_vc_unreal</projectOutput>
<target>DE-VC</target>
<project>Plugin_VC_Unreal</project>
<projectOutput>Plugin_VC_Unreal</projectOutput>
<target>GTA-VC_UNREAL</target>
</component>

<component>
<name>GTA San Andreas DE</name>
<envVar>GTA_SA_UNREAL_DIR</envVar>
<checkFile>Gameface\Binaries\Win64\SanAndreas.exe</checkFile>
<project>plugin_sa_unreal</project>
<projectOutput>plugin_unreal</projectOutput>
<target>DE-SA</target>
<project>Plugin_SA_Unreal</project>
<projectOutput>Plugin_Unreal</projectOutput>
<target>GTA-SA_UNREAL</target>
</component>

<!-- Extras -->
Expand Down
Loading