diff options
author | William Deegan <bill@baddogconsulting.com> | 2017-04-21 16:27:45 (GMT) |
---|---|---|
committer | William Deegan <bill@baddogconsulting.com> | 2017-04-21 16:27:45 (GMT) |
commit | dd4c5225dd12538a58faa2480548eac87d06a9cd (patch) | |
tree | 586fd8508c55cd5a28c611329808c97059c7f763 /src/engine/SCons/Tool/msvs.xml | |
parent | 6d8d3b89fbcb22ca064a9d24f31f9a0b37e1826d (diff) | |
download | SCons-dd4c5225dd12538a58faa2480548eac87d06a9cd.zip SCons-dd4c5225dd12538a58faa2480548eac87d06a9cd.tar.gz SCons-dd4c5225dd12538a58faa2480548eac87d06a9cd.tar.bz2 |
Fix bug #2979
Example code for MSVSProject had syntax errors.
http://scons.tigris.org/issues/show_bug.cgi?id=2979
Diffstat (limited to 'src/engine/SCons/Tool/msvs.xml')
-rw-r--r-- | src/engine/SCons/Tool/msvs.xml | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/engine/SCons/Tool/msvs.xml b/src/engine/SCons/Tool/msvs.xml index e85b27c..b367e84 100644 --- a/src/engine/SCons/Tool/msvs.xml +++ b/src/engine/SCons/Tool/msvs.xml @@ -127,8 +127,10 @@ compilation error messages displayed in the Visual Studio console output window. This can be remedied by adding the Visual C/C++ <literal>/FC</literal> compiler option to the &cv-link-CCFLAGS; variable so that the compiler will print the full path name of any files that cause compilation errors. </para> -<para> Example usage: </para> <example_commands>barsrcs = ['bar.cpp'], -barincs = ['bar.h'], +<para> Example usage: </para> + <example_commands> +barsrcs = ['bar.cpp'] +barincs = ['bar.h'] barlocalincs = ['StdAfx.h'] barresources = ['bar.rc','resource.h'] barmisc = ['bar_readme.txt'] |