123456789101112131415161718192021222324252627282930 |
- From c0f2260d8b7e435bce765e7ac91d51f1b349b87b Mon Sep 17 00:00:00 2001
- From: Fabrice Fontaine <fontaine.fabrice@gmail.com>
- Date: Sun, 10 Mar 2024 13:43:12 +0100
- Subject: [PATCH] CMakeLists.txt: add BUILD_WERROR option
- Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
- Upstream: https://github.com/zhaojh329/libuhttpd/commit/c0f2260d8b7e435bce765e7ac91d51f1b349b87b
- ---
- CMakeLists.txt | 8 +++++++-
- 1 file changed, 7 insertions(+), 1 deletion(-)
- diff --git a/CMakeLists.txt b/CMakeLists.txt
- index 6fb9651..6719e5f 100644
- --- a/CMakeLists.txt
- +++ b/CMakeLists.txt
- @@ -7,7 +7,13 @@ include(CheckLibraryExists)
- list(APPEND CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}/cmake/Modules/")
-
- add_definitions(-D_GNU_SOURCE -D_FILE_OFFSET_BITS=64)
- -add_compile_options(-O -Wall -Werror --std=gnu99)
- +add_compile_options(-O -Wall --std=gnu99)
- +
- +option(BUILD_WERROR "Build with -Werror" ON)
- +
- +if(BUILD_WERROR)
- + add_compile_options(-Werror)
- +endif()
-
- option(BUILD_STATIC "Build static library" OFF)
-
|