Improve documentation

This commit is contained in:
Martchus 2017-08-17 19:12:25 +02:00
parent c88fd9f9a8
commit a38ef8db34
2 changed files with 4 additions and 2 deletions

View File

@ -12,7 +12,7 @@ The library utilizes:
- split, join, find and replace - split, join, find and replace
- conversion from number to string and vice verca - conversion from number to string and vice verca
- encoding/decoding base-64 - encoding/decoding base-64
- building string without multiple heap allocations (string builder) - building string without multiple heap allocations ("string builder")
* IO * IO
- reading/writing primitive data types of various sizes (little-endian and big-endian) - reading/writing primitive data types of various sizes (little-endian and big-endian)
- reading/writing terminated strings and size-prefixed strings - reading/writing terminated strings and size-prefixed strings

View File

@ -93,11 +93,13 @@ the location of libraries and include directories directly:
* `dependency_STATIC_INCLUDE_DIR`: specifies the locations of the additional * `dependency_STATIC_INCLUDE_DIR`: specifies the locations of the additional
include directories required for using the static version of the *dependency* 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 \ /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_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 \ -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 \
... ...
``` ```