Files
platform-espressif32/examples/espidf-coap-server/components/libcoap/scripts/msbuild.sln.cmd
T
Valerii Koval 4a461f5221 Update examples
2023-01-06 14:29:59 +02:00

17 lines
323 B
Batchfile

@echo off
pushd "%~dp0"
if exist Debug rd /s /q Debug
if exist Release rd /s /q Release
if exist x64 rd /s /q x64
if exist NoTLS rd /s /q NoTLS
cd ..
rem MSBuild.exe ./win32/libcoap.sln /p:Configuration=NoTLS /p:Platform=x64 /warnaserror
MSBuild.exe ./win32/libcoap.sln /p:Platform=x64 /warnaserror
:exit
popd
@echo on