This repository has been archived on 2025-02-04. You can view files and clone it, but cannot push or open issues or pull requests.
helpless/build_release.bat

13 lines
154 B
Batchfile
Raw Normal View History

@echo off
rmdir /S /Q build
mkdir build
pushd build
mkdir release
pushd release
cl ../../build.c /Zi /Fecgame.exe /Ox /DRELEASE /MD /std:c11
popd
popd