From 820d19162678a478bac6a0945e2111b11bbea91e Mon Sep 17 00:00:00 2001 From: Sergey Sharybin Date: Thu, 30 Jul 2015 10:31:22 +0200 Subject: OpenSubdiv: Add CMake option to enable -Werror in subsurf code --- intern/opensubdiv/CMakeLists.txt | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'intern/opensubdiv') diff --git a/intern/opensubdiv/CMakeLists.txt b/intern/opensubdiv/CMakeLists.txt index 3f88ba5d662..fceaeb94af9 100644 --- a/intern/opensubdiv/CMakeLists.txt +++ b/intern/opensubdiv/CMakeLists.txt @@ -50,6 +50,11 @@ set(SRC opensubdiv_partitioned.h ) +if(WITH_SUBSURF_WERROR) + ADD_CHECK_C_COMPILER_FLAG(CMAKE_C_FLAGS C_WERROR -Werror) + ADD_CHECK_CXX_COMPILER_FLAG(CMAKE_CXX_FLAGS C_WERROR -Werror) +endif() + macro(OPENSUBDIV_DEFINE_COMPONENT component) if(${${component}}) add_definitions(-D${component}) -- cgit v1.2.3