rtspReceive/auto_cmake.bat

6 lines
143 B
Batchfile
Raw Permalink Normal View History

2024-03-21 16:23:30 +08:00
for /F %%i in ('cd') do ( set dir=%%i)
rmdir /s /q build
mkdir build
cmake -B build -G "NMake Makefiles" && cd ./build && nmake
cd %dir%