diff options
author | Jose <jose@zeroc.com> | 2012-10-09 19:30:53 +0200 |
---|---|---|
committer | Jose <jose@zeroc.com> | 2012-10-09 19:30:53 +0200 |
commit | 4480fa4394674b017557c41d6aa3739e01e70eb5 (patch) | |
tree | 07fe1987edcfcd2a31f52f2197a89fece17eb778 /demoscript/Util.py | |
parent | ICE-4375 - Ice preprocessor macro for .ice files (diff) | |
download | ice-4480fa4394674b017557c41d6aa3739e01e70eb5.tar.bz2 ice-4480fa4394674b017557c41d6aa3739e01e70eb5.tar.xz ice-4480fa4394674b017557c41d6aa3739e01e70eb5.zip |
.NET CF fixes
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 180c216a323..82de03fe2cc 100644 --- a/demoscript/Util.py +++ b/demoscript/Util.py @@ -139,7 +139,9 @@ def configurePaths(): # # On Windows, C# assemblies are found thanks to the .exe.config files. # - if isWin32(): + if isCompactFramework(): + addPathToEnv("DEVPATH", os.path.join(getIceDir("cs"), "Assemblies", "cf")) + elif isWin32(): addenv("DEVPATH", os.path.join(getIceDir("cs"), "Assemblies")) else: addenv("MONO_PATH", os.path.join(getIceDir("cs"), "Assemblies")) |