diff options
author | Brent Eagles <brent@zeroc.com> | 2006-07-11 20:12:30 +0000 |
---|---|---|
committer | Brent Eagles <brent@zeroc.com> | 2006-07-11 20:12:30 +0000 |
commit | 3fcb6e438a887dc81de8a2de854be58969d1e6fb (patch) | |
tree | 1f3114d8a6e86c554814835169c5077d756284be /cpp/install/common/makewindist.py | |
parent | changing slashes to backslashes in projects (diff) | |
download | ice-3fcb6e438a887dc81de8a2de854be58969d1e6fb.tar.bz2 ice-3fcb6e438a887dc81de8a2de854be58969d1e6fb.tar.xz ice-3fcb6e438a887dc81de8a2de854be58969d1e6fb.zip |
fixing placement of debug dlls to be available independently of development
kits
Diffstat (limited to 'cpp/install/common/makewindist.py')
-rwxr-xr-x | cpp/install/common/makewindist.py | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/cpp/install/common/makewindist.py b/cpp/install/common/makewindist.py index 4b14fd10f94..ebdb32561e2 100755 --- a/cpp/install/common/makewindist.py +++ b/cpp/install/common/makewindist.py @@ -256,6 +256,13 @@ def buildIceDists(stageDir, sourcesDir, sourcesVersion, installVersion): runprog("devenv all.sln /useenv /build Release") elif installVersion == "vc60": # + # Ice for C++ + # + os.chdir(os.path.join(sourcesDir, "Ice-" + sourcesVersion)) + print "Building in " + os.getcwd() + "..." + runprog('msdev all.dsw /useenv /make "all - Win32 Debug"') + runprog('msdev all.dsw /useenv /make "all - Win32 Release"') + # # Ice for PHP # phpBinHome = os.environ['PHP_BIN_HOME'] @@ -277,13 +284,6 @@ def buildIceDists(stageDir, sourcesDir, sourcesVersion, installVersion): os.chdir(os.path.join(sourcesDir, "IcePHP-" + sourcesVersion)) print "Building in " + os.getcwd() + "..." runprog('msdev icephp.dsw /useenv /make "php_ice - Win32 Release"') - # - # Ice for C++ - # - os.chdir(os.path.join(sourcesDir, "Ice-" + sourcesVersion)) - print "Building in " + os.getcwd() + "..." - runprog('msdev all.dsw /useenv /make "all - Win32 Debug"') - runprog('msdev all.dsw /useenv /make "all - Win32 Release"') elif installVersion in ["vc80_x64"]: # # Ice for C++ |