diff options
author | Jose <jose@zeroc.com> | 2017-04-20 08:12:37 +0200 |
---|---|---|
committer | Jose <jose@zeroc.com> | 2017-04-20 08:12:37 +0200 |
commit | cc82669355e32cc855a48fb4211e56a2abaf51d0 (patch) | |
tree | 6d33b343cc05fac3c38bd4145ad8b12586578b59 /scripts/Util.py | |
parent | Fix UWP package names in build instructions (diff) | |
download | ice-cc82669355e32cc855a48fb4211e56a2abaf51d0.tar.bz2 ice-cc82669355e32cc855a48fb4211e56a2abaf51d0.tar.xz ice-cc82669355e32cc855a48fb4211e56a2abaf51d0.zip |
Visual Studio 2010 support
Diffstat (limited to 'scripts/Util.py')
-rw-r--r-- | scripts/Util.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/scripts/Util.py b/scripts/Util.py index 27751952c77..f77540237e3 100644 --- a/scripts/Util.py +++ b/scripts/Util.py @@ -238,6 +238,8 @@ class Windows(Platform): "Ice/properties", # Property files are not supported with UWP "Ice/plugin", "Ice/threadPoolPriority"]) + elif self.getCompiler() in ["v100"]: + return (["Ice/.*", "IceSSL/.*", "IceBox/.*", "IceDiscovery/.*", "IceUtil/.*", "Slice/.*"], []) return Platform.getFilters(self, config) def parseBuildVariables(self, variables): |