summaryrefslogtreecommitdiff
path: root/cpp
diff options
context:
space:
mode:
Diffstat (limited to 'cpp')
-rw-r--r--cpp/INSTALL.LINUX10
-rw-r--r--cpp/INSTALL.WINDOWS12
2 files changed, 20 insertions, 2 deletions
diff --git a/cpp/INSTALL.LINUX b/cpp/INSTALL.LINUX
index 757c93aaebe..5a33a63e518 100644
--- a/cpp/INSTALL.LINUX
+++ b/cpp/INSTALL.LINUX
@@ -125,4 +125,12 @@ $ export LD_LIBRARY_PATH=`pwd`/bin:$LD_LIBRARY_PATH
Installation
======================================================================
-TBD
+Simply run "make install". This will install Ice in the "prefix"
+directory specified in the file Make.rules.
+
+After installation, make sure that the <prefix>/bin directory is in
+your PATH, and the <prefix>/lib directory is in your
+LD_LIBRARY_PATH. When compiling Ice programs, you must also make sure
+to pass the location of the <prefix>/include directory to the compiler
+with the -I option, and the location of the <prefix>/lib directory
+with the -L option.
diff --git a/cpp/INSTALL.WINDOWS b/cpp/INSTALL.WINDOWS
index 3a6abd70786..4c2d0241d04 100644
--- a/cpp/INSTALL.WINDOWS
+++ b/cpp/INSTALL.WINDOWS
@@ -144,4 +144,14 @@ directory, which contains DLLs and executables, to your PATH.
Installation
======================================================================
-TBD
+For Windows, no automatic installation is supported. You must copy the
+contents of the bin, include, and lib directories by hand. The include
+directory contains all Ice include files. The lib directory all Ice
+libraries. And the bin directory all Ice executables, as well as all
+DLLs.
+
+After installation, make sure to add the include directory to the
+Visual C++ "Include files", the lib directory to the "Library files",
+and the bin directory to the "Executable files". (Visual C++ 6.0:
+Choose Tools->Options->Directories. Visual C++ .NET: Choose
+Tools->Options->Projects->VC++ Directories.)