From c7c128f03b1a5bd95946ef5b2d1f9e46abd76ce7 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Sun, 17 Oct 2010 23:32:48 +0000 Subject: [PATCH] remove LCMS option from cmake, this is only testing code. developers who want to work on it can uncomment. --- CMakeLists.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6ed3cd788b6..9580d24be14 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -66,7 +66,6 @@ GET_BLENDER_VERSION() # Blender internal features OPTION(WITH_INTERNATIONAL "Enable I18N (International fonts and text)" ON) -OPTION(WITH_LCMS "Enable color correction with lcms" OFF) OPTION(WITH_PYTHON "Enable Embedded Python API" ON) OPTION(WITH_BUILDINFO "Include extra build details" ON) OPTION(WITH_FLUID "Enable Elbeem (Fluid Simulation)" ON) @@ -126,6 +125,8 @@ IF(APPLE) OPTION(WITH_LIBS10.5 "Use 10.5 libs (needed for 64bit builds)" OFF) ENDIF(APPLE) +# only for developers who want to make this functional +# OPTION(WITH_LCMS "Enable color correction with lcms" OFF) IF(NOT WITH_GAMEENGINE AND WITH_PLAYER) MESSAGE(FATAL_ERROR "WITH_PLAYER needs WITH_GAMEENGINE")