summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2019-03-29 08:42:38 +0100
committerJohnny Willemsen <jwillemsen@remedy.nl>2019-03-29 08:42:38 +0100
commite294dc5909d0c1547f53f5b84a28c9ba0471768f (patch)
tree99bd0f0090a8135da7f7b9de068e2cb1adf0108a
parent352786a67603eea1358fa1a7e400a612e6d24506 (diff)
downloadATCD-e294dc5909d0c1547f53f5b84a28c9ba0471768f.tar.gz
Add vs2019 projects
* ACE/bin/make_release.py:
-rwxr-xr-xACE/bin/make_release.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/ACE/bin/make_release.py b/ACE/bin/make_release.py
index b6e828e00fe..8415b2185b5 100755
--- a/ACE/bin/make_release.py
+++ b/ACE/bin/make_release.py
@@ -868,6 +868,7 @@ def generate_workspaces (stage_dir):
msvc_exclude_option = ' '
vc14_option = ' -name_modifier *_vc14 '
vs2017_option = ' -name_modifier *_vs2017 '
+ vs2019_option = ' -name_modifier *_vs2019 '
redirect_option = str ()
if not opts.verbose:
@@ -882,6 +883,9 @@ def generate_workspaces (stage_dir):
print "\tGenerating VS2017 solutions..."
ex (mpc_command + " -type vs2017 " + msvc_exclude_option + mpc_option + workers_option + vs2017_option + redirect_option)
+ print "\tGenerating VS2019 solutions..."
+ ex (mpc_command + " -type vs2019 " + msvc_exclude_option + mpc_option + workers_option + vs2019_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")