From 8cdfd9f85400d96aa29264b1bd18a0be83c2a2d2 Mon Sep 17 00:00:00 2001 From: ArthurSonzogni Date: Wed, 12 Feb 2020 00:16:55 +0100 Subject: [PATCH] Disable signe-compare. --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index b7768bd8..a16fa441 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -76,7 +76,7 @@ foreach(lib screen dom component) PRIVATE src ) target_compile_features(${lib} PUBLIC cxx_std_17) - target_compile_options(${lib} PRIVATE -Wall -Werror -pedantic -Wextra) + target_compile_options(${lib} PRIVATE -Wall -Werror -pedantic -Wextra -Wno-sign-compare) endforeach() if(FTXUI_ENABLE_INSTALL)