diff options
author | Jörg Frings-Fürst <debian@jff-webhsoting.net> | 2021-04-26 20:34:38 +0200 |
---|---|---|
committer | Jörg Frings-Fürst <debian@jff-webhsoting.net> | 2021-04-26 20:34:38 +0200 |
commit | 57be5b9e80075d32249105407879dd1d2bac460b (patch) | |
tree | f161e88bc941e1c861b1dd1a34a332f8cdc53f7a /README.md | |
parent | cf9293531802f491b4b145d98a4900e72a7d105b (diff) | |
parent | 7d4216c07bd36b69ae7f5eabb7b4d6b59166a508 (diff) |
Merge branch 'feature/upstream' into develop
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 11 |
1 files changed, 7 insertions, 4 deletions
@@ -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 ``` |