summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorJörg Frings-Fürst <debian@jff-webhsoting.net>2021-05-17 18:45:48 +0200
committerJörg Frings-Fürst <debian@jff-webhsoting.net>2021-05-17 18:45:48 +0200
commite88cb800c1d2f1d106238cfdcf0a8db5519cc5d5 (patch)
tree8c6f15949ac5d74a6b8a7de0d9cede924ff7b5c5 /README.md
parentcbca5053aa041134ac8b859aa3b3ea84f5c07328 (diff)
parent02179e607b61eccf0fd6580c67f467f6d669005c (diff)
Merge branch 'release/debian/0.9.5+dfsg-1'debian/0.9.5+dfsg-1
Diffstat (limited to 'README.md')
-rw-r--r--README.md11
1 files changed, 7 insertions, 4 deletions
diff --git a/README.md b/README.md
index ded8fd0..3f92bfc 100644
--- a/README.md
+++ b/README.md
@@ -1,4 +1,4 @@
-[![Travis CI Build Status](https://travis-ci.org/uriparser/uriparser.svg?branch=master)](https://travis-ci.org/uriparser/uriparser)
+[![Build and test](https://github.com/uriparser/uriparser/actions/workflows/build-and-test.yml/badge.svg)](https://github.com/uriparser/uriparser/actions/workflows/build-and-test.yml)
[![AppVeyor Build Status](https://ci.appveyor.com/api/projects/status/github/uriparseradmin/uriparser?svg=true)](https://ci.appveyor.com/project/uriparseradmin/uriparser)
@@ -10,7 +10,7 @@ URI parsing and handling library
written in C89 ("ANSI C").
uriparser is cross-platform,
fast,
-supports Unicode, and
+supports both `char` and `wchar_t`, and
is licensed under the [New BSD license](https://github.com/uriparser/uriparser/blob/master/COPYING).
To learn more about uriparser,
@@ -55,8 +55,8 @@ 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
+// Path to qhelpgenerator program (default: auto-detect)
+QHG_LOCATION:FILEPATH=
// Build code supporting data type 'char'
URIPARSER_BUILD_CHAR:BOOL=ON
@@ -78,4 +78,7 @@ URIPARSER_ENABLE_INSTALL:BOOL=ON
// Use of specific runtime library (/MT /MTd /MD /MDd) with MSVC
URIPARSER_MSVC_RUNTIME:STRING=
+
+// Treat all compiler warnings as errors
+URIPARSER_WARNINGS_AS_ERRORS:BOOL=OFF
```