summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWilliam Deegan <bill@baddogconsulting.com>2017-04-21 09:27:45 -0700
committerWilliam Deegan <bill@baddogconsulting.com>2017-04-21 09:27:45 -0700
commit531ca24836916d243d55846552fec19f236d96a3 (patch)
tree586fd8508c55cd5a28c611329808c97059c7f763
parenta3844f28ba711e438e8b11cf7e9c175c54af0b92 (diff)
downloadscons-531ca24836916d243d55846552fec19f236d96a3.tar.gz
Fix bug #2979
Example code for MSVSProject had syntax errors. http://scons.tigris.org/issues/show_bug.cgi?id=2979
-rw-r--r--src/CHANGES.txt1
-rw-r--r--src/engine/SCons/Tool/msvs.xml6
2 files changed, 5 insertions, 2 deletions
diff --git a/src/CHANGES.txt b/src/CHANGES.txt
index 2f46d4f4..0bcf92ee 100644
--- a/src/CHANGES.txt
+++ b/src/CHANGES.txt
@@ -44,6 +44,7 @@ RELEASE VERSION/DATE TO BE FILLED IN LATER
- Added prioritized list of xsltproc tools to docbook. The order will now be as
follows: xsltproc, saxon, saxon-xslt, xalan (with first being highest priority, first
tool found is used)
+ - Fixed MSVSProject example code (http://scons.tigris.org/issues/show_bug.cgi?id=2979)
From Daniel Moody:
- Fixed msvs.py for Visual Studio generated projects which were
diff --git a/src/engine/SCons/Tool/msvs.xml b/src/engine/SCons/Tool/msvs.xml
index e85b27cd..b367e844 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']