aboutsummaryrefslogtreecommitdiff
path: root/vcprojtest.py
diff options
context:
space:
mode:
Diffstat (limited to 'vcprojtest.py')
-rw-r--r--vcprojtest.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/vcprojtest.py b/vcprojtest.py
index b197e68..1becbc1 100644
--- a/vcprojtest.py
+++ b/vcprojtest.py
@@ -18,10 +18,17 @@
import xml.etree.ElementTree as ET
def runtest(ofname):
+ buildtype = 'Debug'
+ platform = "Win32"
root = ET.Element('Project', {'DefaultTargets' : "Build",
'ToolsVersion' : '4.0',
'xmlns' : 'http://schemas.microsoft.com/developer/msbuild/2003'})
confitems = ET.Element('ItemGroup', {'Label' : 'ProjectConfigurations'})
+ prjconf = ET.SubElement(confitems, 'ProjectConfiguration', {'Include' : 'Debug|Win32'})
+ p = ET.SubElement(prjconf, 'Configuration')
+ p.text= buildtype
+ pl = ET.SubElement(prjconf, 'Platform')
+ pl.text = platform
root.append(confitems)
tree = ET.ElementTree(root)
tree.write(ofname, encoding='utf-8', xml_declaration=True)