summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2017-03-10 10:08:50 +0100
committerJohnny Willemsen <jwillemsen@remedy.nl>2017-03-10 10:08:50 +0100
commit8769426c6c91dbf87330da25ed4c65e6c6d3fd16 (patch)
treec65582a3527b590870baaaad4b3a57a92b28cb24
parent24ac735b2fd4079788bde84ce900e42815c23d46 (diff)
downloadATCD-8769426c6c91dbf87330da25ed4c65e6c6d3fd16.tar.gz
Generate vc15 solutions as part of the release
* ACE/bin/make_release.py:
-rwxr-xr-xACE/bin/make_release.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/ACE/bin/make_release.py b/ACE/bin/make_release.py
index d4e6084a3e2..8add6e145c3 100755
--- a/ACE/bin/make_release.py
+++ b/ACE/bin/make_release.py
@@ -888,6 +888,7 @@ def generate_workspaces (stage_dir):
msvc_exclude_option = ' '
vc12_option = ' -name_modifier *_vc12 '
vc14_option = ' -name_modifier *_vc14 '
+ vc15_option = ' -name_modifier *_vc15 '
redirect_option = str ()
if not opts.verbose:
@@ -902,6 +903,8 @@ def generate_workspaces (stage_dir):
print "\tGenerating VC14 solutions..."
ex (mpc_command + " -type vc14 " + msvc_exclude_option + mpc_option + workers_option + vc14_option + redirect_option)
+ print "\tGenerating VC15 solutions..."
+ ex (mpc_command + " -type vc15 " + msvc_exclude_option + mpc_option + workers_option + vc15_option + redirect_option)
print "\tCorrecting permissions for all generated files..."
ex ("find ./ -name '*.vc[p,w]' -or -name '*.bmak' -or -name '*.vcproj' -or -name '*.sln' -or -name '*.vcxproj' -or -name '*.filters' -or -name 'GNUmake*' | xargs chmod 0644")