9 lines
285 B
Batchfile
9 lines
285 B
Batchfile
@REM Run Conan to install dependencies
|
|
rmdir build /s /q
|
|
|
|
@REM DEBUG
|
|
conan install . -c tools.cmake.cmaketoolchain:generator=Msbuild -s build_type=Debug --build=missing
|
|
|
|
@REM RELEASE
|
|
conan install . -c tools.cmake.cmaketoolchain:generator=Msbuild -s build_type=Release --build=missing
|