From a38ef8db34166981d2fb579752539d132e5c4188 Mon Sep 17 00:00:00 2001 From: Martchus Date: Thu, 17 Aug 2017 19:12:25 +0200 Subject: [PATCH] Improve documentation --- README.md | 2 +- doc/buildvariables.md | 4 +++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 0993637..eddcaaa 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@ The library utilizes: - split, join, find and replace - conversion from number to string and vice verca - encoding/decoding base-64 - - building string without multiple heap allocations (string builder) + - building string without multiple heap allocations ("string builder") * IO - reading/writing primitive data types of various sizes (little-endian and big-endian) - reading/writing terminated strings and size-prefixed strings diff --git a/doc/buildvariables.md b/doc/buildvariables.md index 2e33dd7..7a5f328 100644 --- a/doc/buildvariables.md +++ b/doc/buildvariables.md @@ -93,11 +93,13 @@ the location of libraries and include directories directly: * `dependency_STATIC_INCLUDE_DIR`: specifies the locations of the additional include directories required for using the static version of the *dependency* -Example of passing location of dynamic `iconv` to CMake: +Example of passing location of dynamic `iconv` and `zlib` to CMake: ``` /opt/osxcross/bin/x86_64-apple-darwin15-cmake \ -Diconv_DYNAMIC_LIB:FILEPATH=/opt/osxcross/SDK/MacOSX10.11.sdk/usr/lib/libiconv.2.tbd \ -Diconv_DYNAMIC_INCLUDE_DIR:PATH=/opt/osxcross/SDK/MacOSX10.11.sdk/usr/include \ + -Dz_DYNAMIC_LIB:FILEPATH=/opt/osxcross/SDK/MacOSX10.11.sdk/usr/lib/libz.1.tbd \ + -Dz_DYNAMIC_INCLUDE_DIR:PATH=/opt/osxcross/SDK/MacOSX10.11.sdk/usr/include \ ... ```