mirror of
https://github.com/dalathegreat/Battery-Emulator.git
synced 2025-10-02 17:29:22 +02:00
15 lines
259 B
Batchfile
15 lines
259 B
Batchfile
@echo off
|
|
echo Cleaning up
|
|
rmdir /Q/S build
|
|
echo Creating new CMake build folder
|
|
mkdir build
|
|
cd build
|
|
echo Building CMake project
|
|
call cmake ..
|
|
call cmake --build .
|
|
echo Executing tests
|
|
for %%i in ("test\Debug\*.exe") do (
|
|
echo Running %%i
|
|
%%i
|
|
)
|
|
cd..
|