diff options
author | Jose <pepone@users.noreply.github.com> | 2021-01-20 12:12:30 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-20 12:12:30 +0100 |
commit | c0d4399157266129dd1ca6ab32e5571e034efac9 (patch) | |
tree | 07cb84f68505bdb69b289f018d89abdfdf7e73fb | |
parent | Uninstall android test controller if it was left behind, before doing a fresh... (diff) | |
download | ice-c0d4399157266129dd1ca6ab32e5571e034efac9.tar.bz2 ice-c0d4399157266129dd1ca6ab32e5571e034efac9.tar.xz ice-c0d4399157266129dd1ca6ab32e5571e034efac9.zip |
Document how to build C++ tests with a binary distribution - Close #1160 (#1252)
-rw-r--r-- | cpp/README.md | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/cpp/README.md b/cpp/README.md index 3e12e041aeb..8b6ced7c0b6 100644 --- a/cpp/README.md +++ b/cpp/README.md @@ -167,6 +167,19 @@ example, to build the Ice C++98 mapping with `-std=c++11`, you can use: make CXXFLAGS=-std=c++11 ``` +To build the test suite using a binary distribution use: +``` +make ICE_BIN_DIST=all +``` + +If the binary distribution you are using is not installed in a system wide location +where the C++ compiler can automatically find the header and library files, you also +need to set `ICE_HOME` + +``` +make ICE_HOME=/opt/Ice-3.7.5 ICE_BIN_DIST=all +``` + ### Build configurations and platforms The C++ source tree supports multiple build configurations and platforms. To |