From: Michal MalĂ˝ Date: Wed, 31 Jul 2019 15:40:54 +0000 (+0200) Subject: Be more strict with compiler warnings X-Git-Url: https://gitweb.devoid-pointer.net/?a=commitdiff_plain;h=97718fdd3ca9797a540db8b026e7447739183b72;p=FFBChecker.git Be more strict with compiler warnings --- diff --git a/CMakeLists.txt b/CMakeLists.txt index c70ad22..6192e7c 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -7,7 +7,7 @@ find_package(Qt5Widgets REQUIRED) if (${CMAKE_SYSTEM_NAME} MATCHES "Linux") # Linux-specific definitions set(PLATFORM_LINUX 1) - add_definitions("-std=c++11 -Wall -Wextra") + add_definitions("-std=c++11 -Wall -Wextra -pedantic") add_definitions("-DFFBC_PLATFORM_LINUX") if (CMAKE_BUILD_TYPE EQUAL "DEBUG")