diff options
author | Benoit Foucher <benoit@zeroc.com> | 2017-03-14 14:34:00 +0100 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2017-03-14 14:34:00 +0100 |
commit | d83b1a9548833642b0c13918880bf16af0697c9d (patch) | |
tree | 192108c34f3e6a16ab9ff740b7737d336cf9b3ba /scripts/Util.py | |
parent | Added new ctors to Ice::CommunicatorHolder (diff) | |
download | ice-d83b1a9548833642b0c13918880bf16af0697c9d.tar.bz2 ice-d83b1a9548833642b0c13918880bf16af0697c9d.tar.xz ice-d83b1a9548833642b0c13918880bf16af0697c9d.zip |
Fixed testing of static builds
Diffstat (limited to 'scripts/Util.py')
-rw-r--r-- | scripts/Util.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/scripts/Util.py b/scripts/Util.py index dcdc4aadff3..2bf93f480f6 100644 --- a/scripts/Util.py +++ b/scripts/Util.py @@ -81,6 +81,9 @@ class Platform: setattr(self, varname, valuefn(value) if valuefn else value) def getFilters(self, config): + if config.buildConfig in ["static", "cpp11-static"]: + return (["Ice/.*", "IceSSL/configuration", "IceDiscovery/simple", "IceGrid/simple"], + ["Ice/library", "Ice/plugin"]) return ([], []) def getDefaultBuildPlatform(self): |