Files
cpp-build-system/create_project.cmd
Scott E. Graves ba5f4d1625
Some checks failed
sgraves/cpp-build-system_mac/pipeline/head There was a failure building this commit
sgraves/cpp-build-system/pipeline/head There was a failure building this commit
sgraves/cpp-build-system_msys2/pipeline/head There was a failure building this commit
Remove package sources and host only the expected SHA-256 (#3)
Reviewed-on: #3
Co-authored-by: Scott E. Graves <scott.e.graves@protonmail.com>
Co-committed-by: Scott E. Graves <scott.e.graves@protonmail.com>
2025-12-13 09:35:33 -06:00

13 lines
210 B
Batchfile

@echo off
setlocal
pushd "%~dp0"
call src\scripts\setup_msys2.cmd
for /f "usebackq tokens=*" %%i in (`cygpath "%~2"`) do set ARG1=%%i
call mingw64 -no-start ./create_project.sh "%~1" "%ARG1%"
popd
endlocal