diff options
author | Brad King <brad.king@kitware.com> | 2012-08-22 14:49:47 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2012-08-22 15:12:32 (GMT) |
commit | 9b2dda5db57415e6f8b910e0fa3d770ec478e9f3 (patch) | |
tree | 6af4f19dcfafe776e2d8dd799e3fb686a46fa5b5 /Source/cmparseMSBuildXML.py | |
parent | 4cb99b1dbc3932a74a7c34b0b31187e0e913d625 (diff) | |
download | CMake-9b2dda5db57415e6f8b910e0fa3d770ec478e9f3.zip CMake-9b2dda5db57415e6f8b910e0fa3d770ec478e9f3.tar.gz CMake-9b2dda5db57415e6f8b910e0fa3d770ec478e9f3.tar.bz2 |
VS11: Generate flag tables from MSBuild V110 tool files
Run cmparseMSBuildXML.py on cl.xml, lib.xml, and link.xml to generate
our flag tables:
python cmparseMSBuildXML.py -x ".../MSBuild/Microsoft.Cpp/v4.0/V110/1033/cl.xml" > cmVS11CLFlagTable.h
python cmparseMSBuildXML.py -x ".../MSBuild/Microsoft.Cpp/v4.0/V110/1033/lib.xml" > cmVS11LibFlagTable.h
python cmparseMSBuildXML.py -x ".../MSBuild/Microsoft.Cpp/v4.0/V110/1033/link.xml" > cmVS11LinkFlagTable.h
Fix up the declaration names at the top of each file. Finally, teach
cmVisualStudio10TargetGenerator to select the version of the table
matching the version of VS.
Diffstat (limited to 'Source/cmparseMSBuildXML.py')
-rwxr-xr-x | Source/cmparseMSBuildXML.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Source/cmparseMSBuildXML.py b/Source/cmparseMSBuildXML.py index eba84aa..35b55ca 100755 --- a/Source/cmparseMSBuildXML.py +++ b/Source/cmparseMSBuildXML.py @@ -6,6 +6,9 @@ # "${PROGRAMFILES}/MSBuild/Microsoft.Cpp/v4.0/1033/cl.xml" # "${PROGRAMFILES}/MSBuild/Microsoft.Cpp/v4.0/1033/lib.xml" # "${PROGRAMFILES}/MSBuild/Microsoft.Cpp/v4.0/1033/link.xml" +# "${PROGRAMFILES}/MSBuild/Microsoft.Cpp/v4.0/V110/1033/cl.xml" +# "${PROGRAMFILES}/MSBuild/Microsoft.Cpp/v4.0/V110/1033/lib.xml" +# "${PROGRAMFILES}/MSBuild/Microsoft.Cpp/v4.0/V110/1033/link.xml" # # BoolProperty <Name>true|false</Name> # simple example: |