From 70c5958fa1f4169ec495bb957726f945c6be7075 Mon Sep 17 00:00:00 2001 From: Aki Date: Mon, 7 Nov 2022 20:47:43 +0100 Subject: Enabled most warnings --- CMakeLists.txt | 1 + 1 file changed, 1 insertion(+) (limited to 'CMakeLists.txt') diff --git a/CMakeLists.txt b/CMakeLists.txt index f6aef10..07becab 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -2,5 +2,6 @@ cmake_minimum_required(VERSION 3.16) project(kurator) set(CMAKE_CXX_STANDARD 17) set(CMAKE_CXX_EXTENSIONS No) +set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wall -Wextra -Wpedantic") find_package(raylib 4 REQUIRED) add_subdirectory(kurator) -- cgit v1.1