From 8d16869d833ea2a2bd548c8f7b767dae582c78f2 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Sat, 3 May 2014 07:22:14 +1000 Subject: Code cleanup: Add -Werror=float-conversion to Cycles --- intern/cycles/CMakeLists.txt | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'intern/cycles/CMakeLists.txt') diff --git a/intern/cycles/CMakeLists.txt b/intern/cycles/CMakeLists.txt index 0d13c4b61d9..50fd1950494 100644 --- a/intern/cycles/CMakeLists.txt +++ b/intern/cycles/CMakeLists.txt @@ -1,4 +1,3 @@ - # Standalone or with Blender if(NOT WITH_BLENDER AND WITH_CYCLES_STANDALONE) set(CYCLES_INSTALL_PATH "") @@ -127,6 +126,13 @@ include_directories( ${OPENEXR_INCLUDE_DIRS} ) + +# Warnings +if(CMAKE_COMPILER_IS_GNUCC) + set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Werror=float-conversion") +endif() + + # Subdirectories if(WITH_CYCLES_BLENDER) -- cgit v1.2.3