Skip to main content
summaryrefslogtreecommitdiffstats
blob: 2e411bbd3b7dc94df1a6f679b8b8c9f7d617e8b6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
@echo off
REM The Visual C++ compiler must be in your path
REM This is handled automatically with CDT's Visual C++ integration

if exist msvc-debug goto checkmk
mkdir msvc-debug

:checkmk
cd msvc-debug
if exist Makefile goto dobuild
@echo on
cmake -DCMAKE_BUILD_TYPE=Debug ..\..

:dobuild
@echo on
nmake %*

Back to the top