From b034aa01dc0ca443eba7c7b12ead7732c3e32240 Mon Sep 17 00:00:00 2001 From: jussi Date: Wed, 4 May 2022 23:11:09 +0300 Subject: Image manipulation functions. --- CMakeLists.txt | 2 ++ 1 file changed, 2 insertions(+) (limited to 'CMakeLists.txt') diff --git a/CMakeLists.txt b/CMakeLists.txt index be2d7f2..09a73ab 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -7,8 +7,10 @@ project( ReiLua ) set( CMAKE_C_STANDARD 99 ) # Requires C99 standard if( DEBUG ) + message( Debug ) set( CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -O0 -ggdb -std=c99 -Wall -pedantic -fno-common" ) else() + message( Release ) set( CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -O3 -std=c99 -Wall -pedantic -fno-common" ) endif() -- cgit v1.2.3