10 lines
350 B
Batchfile
10 lines
350 B
Batchfile
rem ****
|
|
rem * Command line build - For CppUTest - Run from CppUTest directory
|
|
rem *
|
|
rem * this path works on my machine
|
|
rem ****PATH=C:\Windows\Microsoft.NET\Framework\v4.0.30319;c:\windows\system32;c:\windows
|
|
msbuild /t:rebuild /verbosity:quiet CppUTest_VS201x.sln
|
|
set test_exe=tests\Debug\AllTests.exe
|
|
if exist %test_exe% %test_exe% -v
|
|
|