diff options
Diffstat (limited to 'py/allDemos.py')
-rwxr-xr-x | py/allDemos.py | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/py/allDemos.py b/py/allDemos.py index 2245e1700f5..d84ba1c5df3 100755 --- a/py/allDemos.py +++ b/py/allDemos.py @@ -36,12 +36,16 @@ demos = [ "Ice/session", "Ice/throughput", "Ice/value", - "IceStorm/clock", - "IceGrid/simple", - "Glacier2/callback", "book/printer", "book/simple_filesystem" ] +# +# In Windows service demos only run when using a bin dist, +# we don't build Ice services with VC100 +# +if not Util.isWin32() or Util.isBinDist(): + demos += ["IceStorm/clock", "IceGrid/simple", "Glacier2/callback"] + if __name__ == "__main__": Util.run(demos) |