diff options
author | Johnny Willemsen <jwillemsen@remedy.nl> | 2020-08-07 13:09:53 +0200 |
---|---|---|
committer | Johnny Willemsen <jwillemsen@remedy.nl> | 2020-08-07 13:09:53 +0200 |
commit | a09731f691551672170d06abe21c1863d21c9ce4 (patch) | |
tree | edfa3be25e604b179b9fe613924a9c84eec62c49 /ACE/bin | |
parent | 1adbd7999f36431a408485940060296e56bcbfa6 (diff) | |
download | ATCD-a09731f691551672170d06abe21c1863d21c9ce4.tar.gz |
Don't generate Visual Studio 2015 solutions as part of the release process, now only 2017/2019 will be shipped by default
* ACE/bin/make_release.py:
Diffstat (limited to 'ACE/bin')
-rwxr-xr-x | ACE/bin/make_release.py | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/ACE/bin/make_release.py b/ACE/bin/make_release.py index 968f31a520e..f893cb45a3a 100755 --- a/ACE/bin/make_release.py +++ b/ACE/bin/make_release.py @@ -861,7 +861,6 @@ def generate_workspaces (stage_dir): mpc_option = ' -recurse -hierarchy -relative ACE_ROOT=' + stage_dir + '/ACE_wrappers ' mpc_option += ' -relative TAO_ROOT=' + stage_dir + '/ACE_wrappers/TAO ' msvc_exclude_option = ' ' - vc14_option = ' -name_modifier *_vc14 ' vs2017_option = ' -name_modifier *_vs2017 ' vs2019_option = ' -name_modifier *_vs2019 ' @@ -872,9 +871,6 @@ def generate_workspaces (stage_dir): print "\tGenerating GNUmakefiles...." ex (mpc_command + " -type gnuace " + exclude_option + workers_option + mpc_option + redirect_option) - print "\tGenerating VC14 solutions..." - ex (mpc_command + " -type vc14 " + msvc_exclude_option + mpc_option + workers_option + vc14_option + redirect_option) - print "\tGenerating VS2017 solutions..." ex (mpc_command + " -type vs2017 " + msvc_exclude_option + mpc_option + workers_option + vs2017_option + redirect_option) |