We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c97014f commit c595824Copy full SHA for c595824
makeAndRun.bat
@@ -0,0 +1,16 @@
1
+rem ****
2
+rem * for this command line build to work independent of where it was created
3
+rem *
4
+rem * Generate Project/Export Makefiles
5
6
+rem * then do these edits to the generated files
7
+rem * CppUTest.dep - change the relitive path to ....\program files to \program files
8
+rem * AllTests.mak - At the end of the makefile where the depended upon CppUTest is made
9
+rem* Change cd "\absolute\path\CppUTest" to cd ..
10
+PATH=C:\Program Files\Microsoft Visual Studio\VC98\Bin;%PATH%
11
+rem nmake /f CppUTest.mak CFG="CppUTest - Win32 Debug" all
12
+cd tests
13
+nmake /f AllTests.mak all
14
+cd Debug
15
+AllTests -v
16
+cd ..\..
0 commit comments