summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorBaptiste Lepilleur <gaiacrtn@free.fr>2005-06-14 20:15:15 +0000
committerBaptiste Lepilleur <gaiacrtn@free.fr>2005-06-14 20:15:15 +0000
commit2777d462a0ed2c1b3ad5f183ec6d4094d3f26db4 (patch)
tree6bc949f220e8e855da9c57f3522c69383538086e /doc
parent3fda497e389ae30f9962529eb9509ccc7ecb8090 (diff)
downloadcppunit-2777d462a0ed2c1b3ad5f183ec6d4094d3f26db4.tar.gz
fixed post-build step for running test in vc++
Diffstat (limited to 'doc')
-rw-r--r--doc/cookbook.dox2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/cookbook.dox b/doc/cookbook.dox
index 62e55e1..6ddd048 100644
--- a/doc/cookbook.dox
+++ b/doc/cookbook.dox
@@ -511,7 +511,7 @@ int main( int argc, char **argv)
Now, you need to run your application after compilation.
With Visual C++, this is done in <em>Project Settings/Post-Build step</em>,
-by adding the following command: <tt>$(TargetPath)</tt>. It is expanded to
+by adding the following command: <tt>"$(TargetPath)"</tt>. It is expanded to
the application executable path. Look up the project
<tt>examples/cppunittest/CppUnitTestMain.dsp</tt> which
use that technic.