Commit: c6dcdbf2f89abb6c5cf7b0d47e98504eb2ea3577 Author: Julian Eisel Date: Mon May 23 15:15:17 2016 +0200 Branches: soc-2016-layer_manager https://developer.blender.org/rBc6dcdbf2f89abb6c5cf7b0d47e98504eb2ea3577
Add build option WITH_ADVANCED_LAYERS Useful for debugging and maybe for merging later, so decided to start using it from the beginning. =================================================================== M CMakeLists.txt =================================================================== diff --git a/CMakeLists.txt b/CMakeLists.txt index 1539a55..91f9d0d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -497,6 +497,10 @@ mark_as_advanced(WITH_CXX11) option(WITH_LEGACY_DEPSGRAPH "Build Blender with legacy dependency graph" ON) mark_as_advanced(WITH_LEGACY_DEPSGRAPH) +# Layer manager +option(WITH_ADVANCED_LAYERS "Use the advanced layer manager system for the build (WIP feature)" ON) +mark_as_advanced(WITH_ADVANCED_LAYERS) + # avoid using again option_defaults_clear() _______________________________________________ Bf-blender-cvs mailing list [email protected] https://lists.blender.org/mailman/listinfo/bf-blender-cvs
