diff options
author | Jörg Frings-Fürst <debian@jff-webhsoting.net> | 2020-11-08 12:55:26 +0100 |
---|---|---|
committer | Jörg Frings-Fürst <debian@jff-webhsoting.net> | 2020-11-08 12:55:26 +0100 |
commit | cbca5053aa041134ac8b859aa3b3ea84f5c07328 (patch) | |
tree | 5f37a01d0559c2f041a29df28583c74353e63d1e /README.md | |
parent | c69d5556efc45f1b1a456d68dac4793ba39843bd (diff) | |
parent | e6f80efde97b924c3317ef986832b1cbf73479c1 (diff) |
Merge branch 'release/debian/0.9.4+dfsg-1' into masterdebian/0.9.4+dfsg-1
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 29 |
1 files changed, 20 insertions, 9 deletions
@@ -45,26 +45,37 @@ target_link_libraries(hello PUBLIC uriparser::uriparser) ## Available CMake options (and defaults) ```console -# rm -f CMakeCache.txt ; cmake -LAH | grep -B1 'URIPARSER_\|BUILD_SHARED_LIBS' -[..] +# rm -f CMakeCache.txt ; cmake -LH . | grep -B1 ':.*=' | sed 's,--,,' // Build shared libraries (rather than static ones) BUILD_SHARED_LIBS:BOOL=ON --- + +// Choose the type of build, options are: None Debug Release RelWithDebInfo MinSizeRel ... +CMAKE_BUILD_TYPE:STRING= + +// Install path prefix, prepended onto install directories. +CMAKE_INSTALL_PREFIX:PATH=/usr/local + +// Path to a program. +QHG_LOCATION:FILEPATH=/usr/bin/qhelpgenerator + // Build code supporting data type 'char' URIPARSER_BUILD_CHAR:BOOL=ON --- + // Build API documentation (requires Doxygen, Graphviz, and (optional) Qt's qhelpgenerator) URIPARSER_BUILD_DOCS:BOOL=ON --- -// Build test suite (requires GTest >=1.8.1) + +// Build test suite (requires GTest >=1.8.0) URIPARSER_BUILD_TESTS:BOOL=ON --- + // Build tools (e.g. CLI "uriparse") URIPARSER_BUILD_TOOLS:BOOL=ON --- + // Build code supporting data type 'wchar_t' URIPARSER_BUILD_WCHAR_T:BOOL=ON --- + +// Enable installation of uriparser +URIPARSER_ENABLE_INSTALL:BOOL=ON + // Use of specific runtime library (/MT /MTd /MD /MDd) with MSVC URIPARSER_MSVC_RUNTIME:STRING= ``` |