From b1b55230ddf1a0eb4205e0bf7b36eb17883a06cb Mon Sep 17 00:00:00 2001 From: bsergean Date: Fri, 18 Nov 2022 14:28:59 -0800 Subject: [PATCH] cmake: fix typo in CXXFLAGS (was CXXLFAGS) --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 680f7f97..9cb778c9 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -23,7 +23,7 @@ option(ENABLE_COMPRESSION "Enable gzip compression" ON) option(ENABLE_TESTING "Build tests" ON) option(USE_THIRDPARTY_LIBRARIES "Use 3rdParty submodules" ON) option(THIRDPARTY_CIVETWEB_WITH_SSL "Enable SSL support for embedded civetweb source code") -option(OVERRIDE_CXX_STANDARD_FLAGS "Force building with -std=c++14 even if the CXXLFAGS are configured differently" ON) +option(OVERRIDE_CXX_STANDARD_FLAGS "Force building with -std=c++14 even if the CXXFLAGS are configured differently" ON) option(GENERATE_PKGCONFIG "Generate and install pkg-config files" ${UNIX}) option(RUN_IWYU "Run include-what-you-use" OFF)