summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorJörg Frings-Fürst <debian@jff-webhsoting.net>2020-06-01 18:51:18 +0200
committerJörg Frings-Fürst <debian@jff-webhsoting.net>2020-06-01 18:51:18 +0200
commit7da874bcc1eb3c750b4d2ba5b075bb01a53d4551 (patch)
treeda1243f0490cda2ee9a7a86b132b149f75943e62 /README.md
parent355cb01a1dd3c595034d0f66269bb805f3191e3b (diff)
parent9a2dfe455d3ccf649e2a0f78a50927580bcbbe19 (diff)
Update upstream source from tag 'upstream/0.9.4'
Update to upstream version '0.9.4' with Debian dir 9222e60cc304851fd6749a50170d5723032f250b
Diffstat (limited to 'README.md')
-rw-r--r--README.md29
1 files changed, 20 insertions, 9 deletions
diff --git a/README.md b/README.md
index afbf87b..ded8fd0 100644
--- a/README.md
+++ b/README.md
@@ -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=
```