diff options
author | Veeti Paananen <veeti.paananen@rojekti.fi> | 2012-10-19 17:33:13 +0300 |
---|---|---|
committer | Veeti Paananen <veeti.paananen@rojekti.fi> | 2012-10-20 02:56:35 +0300 |
commit | 9795a40f886db0e9b700252e08d34d0b37ff8ecb (patch) | |
tree | a0b69fd0a335a613eadd87c50a068195a8984c42 /README.md | |
parent | 350b83b67d6dfc7f5cff5065aa0cf46f2bc00468 (diff) | |
download | libgit2-9795a40f886db0e9b700252e08d34d0b37ff8ecb.tar.gz |
Use standard CMake variable names for installation paths
Rename INSTALL_INC and INSTALL_BIN to INCLUDE_INSTALL_DIR and
BIN_INSTALL_DIR, which are more commonly used. This is also
consistent with the variable for the library path which is
already LIB_INSTALL_DIR.
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -66,9 +66,9 @@ For more advanced use or questions about CMake please read <http://www.cmake.org The following CMake variables are declared: -- `INSTALL_BIN`: Where to install binaries to. +- `BIN_INSTALL_DIR`: Where to install binaries to. - `LIB_INSTALL_DIR`: Where to install libraries to. -- `INSTALL_INC`: Where to install headers to. +- `INCLUDE_INSTALL_DIR`: Where to install headers to. - `BUILD_SHARED_LIBS`: Build libgit2 as a Shared Library (defaults to ON) - `BUILD_CLAR`: Build [Clar](https://github.com/tanoku/clar)-based test suite (defaults to ON) - `THREADSAFE`: Build libgit2 with threading support (defaults to OFF) |