Build tool with musl for now

This commit is contained in:
2022-09-11 20:50:15 +02:00
parent aa717886b4
commit 92954ce53e
4 changed files with 44 additions and 9 deletions

View File

@@ -2,9 +2,11 @@
rem build_all [clean]
set bin_projects=psxcdgen psxcdread
set bin_linux_projects=cpp_out
set clean_projects=cdtypes
set projects=%bin_projects%
set linux_projects=%bin_linux_projects%
set build_type=build
set cur_dir=%cd%
@@ -18,6 +20,11 @@ IF NOT "%~1" == "" (
)
for %%a in (%projects%) do (
call .\run_cargo %%a %build_type% release
call .\run_cargo %%a %build_type% release windows
cd %cur_dir%
)
for %%a in (%linux_projects%) do (
call .\run_cargo %%a %build_type% release linux
cd %cur_dir%
)