[openrtm-commit:02830] r3043 - in trunk/OpenRTM-aist: build src/lib/coil/build
openrtm @ openrtm.org
openrtm @ openrtm.org
2017年 9月 15日 (金) 16:14:34 JST
Author: kawauchi
Date: 2017-09-15 16:14:34 +0900 (Fri, 15 Sep 2017)
New Revision: 3043
Modified:
trunk/OpenRTM-aist/build/slntool.py
trunk/OpenRTM-aist/src/lib/coil/build/slntool.py
Log:
[compat,bugfix,->RELENG_1_2] The header setting of the Visual Studio solution file has been fixed. refs #4201 and #4172
Modified: trunk/OpenRTM-aist/build/slntool.py
===================================================================
--- trunk/OpenRTM-aist/build/slntool.py 2017-09-15 05:58:00 UTC (rev 3042)
+++ trunk/OpenRTM-aist/build/slntool.py 2017-09-15 07:14:34 UTC (rev 3043)
@@ -26,9 +26,9 @@
"VC9": {"sln": "10.00", "vc": "2008"},
"VC10": {"sln": "11.00", "vc": "2010"},
"VC11": {"sln": "12.00", "vc": "2012"},
- "VC12": {"sln": "13.00", "vc": "2013"},
- "VC14": {"sln": "14.00", "vc": "2015"},
- "VC15": {"sln": "15.00", "vc": "2017"},
+ "VC12": {"sln": "12.00", "vc": "2013"},
+ "VC14": {"sln": "12.00", "vc": "14"},
+ "VC141": {"sln": "12.00", "vc": "15"},
}
sln_template = """Microsoft Visual Studio Solution File, Format Version %s
# Visual Studio %s
@@ -83,7 +83,7 @@
slntool.py --dep dep_file [--outfile outfile] vcproj_files...
Options:
- --vcversion: Visual C++'s version [VC8|VC9|VC10|VC11|VC12|VC14|VC15]
+ --vcversion: Visual C++'s version [VC8|VC9|VC10|VC11|VC12|VC14|VC141]
--dep: dependency file
--out or --output: output file name
@@ -119,7 +119,7 @@
"VC11": {"guid":'^.*?<ProjectGuid>{(.*)}</ProjectGuid>',"name":'^.*<ProjectName>(.*)</ProjectName>'},
"VC12": {"guid":'^.*?<ProjectGuid>{(.*)}</ProjectGuid>',"name":'^.*<ProjectName>(.*)</ProjectName>'},
"VC14": {"guid":'^.*?<ProjectGuid>{(.*)}</ProjectGuid>',"name":'^.*<ProjectName>(.*)</ProjectName>'},
- "VC15": {"guid":'^.*?<ProjectGuid>{(.*)}</ProjectGuid>',"name":'^.*<ProjectName>(.*)</ProjectName>'},
+ "VC141": {"guid":'^.*?<ProjectGuid>{(.*)}</ProjectGuid>',"name":'^.*<ProjectName>(.*)</ProjectName>'},
}
re_guid = re.compile(regexs[vcversion]["guid"])
re_name = re.compile(regexs[vcversion]["name"])
Modified: trunk/OpenRTM-aist/src/lib/coil/build/slntool.py
===================================================================
--- trunk/OpenRTM-aist/src/lib/coil/build/slntool.py 2017-09-15 05:58:00 UTC (rev 3042)
+++ trunk/OpenRTM-aist/src/lib/coil/build/slntool.py 2017-09-15 07:14:34 UTC (rev 3043)
@@ -26,9 +26,9 @@
"VC9": {"sln": "10.00", "vc": "2008"},
"VC10": {"sln": "11.00", "vc": "2010"},
"VC11": {"sln": "12.00", "vc": "2012"},
- "VC12": {"sln": "13.00", "vc": "2013"},
- "VC14": {"sln": "14.00", "vc": "2015"},
- "VC15": {"sln": "15.00", "vc": "2017"},
+ "VC12": {"sln": "12.00", "vc": "2013"},
+ "VC14": {"sln": "12.00", "vc": "14"},
+ "VC141": {"sln": "12.00", "vc": "15"},
}
sln_template = """Microsoft Visual Studio Solution File, Format Version %s
# Visual Studio %s
@@ -83,7 +83,7 @@
slntool.py --dep dep_file [--outfile outfile] vcproj_files...
Options:
- --vcversion: Visual C++'s version [VC8|VC9|VC10|VC11|VC12|VC14|VC15]
+ --vcversion: Visual C++'s version [VC8|VC9|VC10|VC11|VC12|VC14|VC141]
--dep: dependency file
--out or --output: output file name
@@ -119,7 +119,7 @@
"VC11": {"guid":'^.*?<ProjectGuid>{(.*)}</ProjectGuid>',"name":'^.*<ProjectName>(.*)</ProjectName>'},
"VC12": {"guid":'^.*?<ProjectGuid>{(.*)}</ProjectGuid>',"name":'^.*<ProjectName>(.*)</ProjectName>'},
"VC14": {"guid":'^.*?<ProjectGuid>{(.*)}</ProjectGuid>',"name":'^.*<ProjectName>(.*)</ProjectName>'},
- "VC15": {"guid":'^.*?<ProjectGuid>{(.*)}</ProjectGuid>',"name":'^.*<ProjectName>(.*)</ProjectName>'},
+ "VC141": {"guid":'^.*?<ProjectGuid>{(.*)}</ProjectGuid>',"name":'^.*<ProjectName>(.*)</ProjectName>'},
}
re_guid = re.compile(regexs[vcversion]["guid"])
re_name = re.compile(regexs[vcversion]["name"])
More information about the openrtm-commit
mailing list