From a997417171f14c7e8088999b0ef97342263ca7b4 Mon Sep 17 00:00:00 2001 From: Uwe Hermann Date: Wed, 20 Feb 2013 11:29:37 +0100 Subject: [PATCH] Add -Wall compiler option. Thanks R. Diez for the patch! --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index f983ebd..722b764 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -148,7 +148,7 @@ include(${QT_USE_FILE}) #------------------------------------------------------------------------------- add_definitions(${QT_DEFINITIONS}) -add_definitions(-Wextra) +add_definitions(-Wall -Wextra) if(NOT DISABLE_WERROR) add_definitions(-Werror) -- 2.30.2