diff options
Diffstat (limited to 'demoscript/Util.py')
-rw-r--r-- | demoscript/Util.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/demoscript/Util.py b/demoscript/Util.py index 0f64819f0a7..5e6b5d84d1c 100644 --- a/demoscript/Util.py +++ b/demoscript/Util.py @@ -130,7 +130,9 @@ def configurePaths(): # # On Windows, C# assemblies are found thanks to the .exe.config files. # - if not isWin32(): + if isWin32(): + addenv("DEVPATH", os.path.join(getIceDir("cs"), "bin")) + else: addenv("MONO_PATH", os.path.join(getIceDir("cs"), "bin")) # |