Code

Display CMS adjustment per-desktop view
[inkscape.git] / cxxtest / sample / msvc / ReadMe.txt
1 Sample files for Visual Studio
2 ==============================
4 There are three projects in this workspace:
6  - CxxTest_3_Generate runs cxxtestgen to create runner.cpp
7  - CxxTest_2_Build compiles the generated file
8  - CxxTest_1_Run runs the compiled binary
10 Whenever you build this workspace, the tests are run, and any failed assertions
11 are displayed as compilation errors (you can browse them using F4).
13 Note that to run this sample, you need first to create an environment
14 variable PERL or PYTHON, e.g. PERL=c:\perl\bin\perl.exe
17 To use these .dsp and .dsw files in your own project, run FixFiles.bat
18 to adjust them to where you've placed CxxTest and your own tests.
20 If you want to use just the .dsp files in your own workspace, don't
21 forget to:
23  - Set up the dependencies (CxxTest_3_Generate depends on
24    CxxTest_2_Build which depends on CxxTest_1_Run)
26  - Add your own include paths, libraries etc. to the CxxTest_2_Build project
29 NOTE: I haven't used "Post-Build Step" to run the tests because I
30 wanted the tests to be executed even if nothing has changed.