25개 이상의 토픽을 선택하실 수 없습니다.
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- @echo off
- @setlocal
- pushd %~dp0
-
- set exeName=slime.exe
- set binDir=bin
-
- mkdir build 2>nul
- pushd build
-
- taskkill /F /IM %exeName% > NUL 2> NUL
-
- echo ---------- Compiling ----------
- call timecmd clang++ -std=c++1z ../src/main.cpp -o %exeName% -D_DEBUG libucrtd.lib
-
- if %errorlevel% == 0 (
- echo.
- echo Done
- ) else (
- echo.
- echo Fuckin' ell
- )
-
- popd
- popd
|