• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1@echo off
2pushd "%~dp0"
3
4if exist Debug rd /s /q Debug
5if exist Release rd /s /q Release
6if exist x64 rd /s /q x64
7if exist NoTLS rd /s /q NoTLS
8
9cd ..
10
11"%programfiles(x86)%\Microsoft Visual Studio\2019\Enterprise\MSBuild\Current\Bin\msbuild.exe" ./win32/libcoap.sln /p:Configuration=NoTLS /p:Platform=x64 /warnaserror
12
13:exit
14popd
15@echo on
16