Cleanup: Move more cmake library variables to be advanced
I noticed that there were a few variables that should not be visible per default. It seems to me to simply be an oversight, so I went ahead and cleaned them up. Reviewed By: Sybren, Ray molenkamp Differential Revision: http://developer.blender.org/D14132
This commit is contained in:
@@ -82,4 +82,6 @@ mark_as_advanced(
|
|||||||
|
|
||||||
unset(_ffmpeg_SEARCH_DIRS)
|
unset(_ffmpeg_SEARCH_DIRS)
|
||||||
unset(_ffmpeg_LIBRARIES)
|
unset(_ffmpeg_LIBRARIES)
|
||||||
unset(_ffmpeg_INCLUDE_DIR)
|
# In cmake version 3.21 and up, we can instead use the NO_CACHE option for
|
||||||
|
# find_path so we don't need to clear it from the cache here.
|
||||||
|
unset(_ffmpeg_INCLUDE_DIR CACHE)
|
||||||
|
|||||||
@@ -76,6 +76,7 @@ FIND_PATH(OSL_SHADER_DIR
|
|||||||
/usr/include/OSL/
|
/usr/include/OSL/
|
||||||
PATH_SUFFIXES
|
PATH_SUFFIXES
|
||||||
share/OSL/shaders
|
share/OSL/shaders
|
||||||
|
shaders
|
||||||
)
|
)
|
||||||
|
|
||||||
# handle the QUIETLY and REQUIRED arguments and set OSL_FOUND to TRUE if
|
# handle the QUIETLY and REQUIRED arguments and set OSL_FOUND to TRUE if
|
||||||
@@ -99,6 +100,7 @@ ENDIF()
|
|||||||
|
|
||||||
MARK_AS_ADVANCED(
|
MARK_AS_ADVANCED(
|
||||||
OSL_INCLUDE_DIR
|
OSL_INCLUDE_DIR
|
||||||
|
OSL_SHADER_DIR
|
||||||
)
|
)
|
||||||
FOREACH(COMPONENT ${_osl_FIND_COMPONENTS})
|
FOREACH(COMPONENT ${_osl_FIND_COMPONENTS})
|
||||||
STRING(TOUPPER ${COMPONENT} UPPERCOMPONENT)
|
STRING(TOUPPER ${COMPONENT} UPPERCOMPONENT)
|
||||||
|
|||||||
@@ -87,12 +87,14 @@ ENDIF()
|
|||||||
MARK_AS_ADVANCED(
|
MARK_AS_ADVANCED(
|
||||||
OPENCOLORIO_INCLUDE_DIR
|
OPENCOLORIO_INCLUDE_DIR
|
||||||
OPENCOLORIO_LIBRARY
|
OPENCOLORIO_LIBRARY
|
||||||
OPENCOLORIO_OPENCOLORIO_LIBRARY
|
|
||||||
OPENCOLORIO_TINYXML_LIBRARY
|
|
||||||
OPENCOLORIO_YAML-CPP_LIBRARY
|
|
||||||
OPENCOLORIO_VERSION
|
OPENCOLORIO_VERSION
|
||||||
)
|
)
|
||||||
|
|
||||||
|
FOREACH(COMPONENT ${_opencolorio_FIND_COMPONENTS})
|
||||||
|
STRING(TOUPPER ${COMPONENT} UPPERCOMPONENT)
|
||||||
|
MARK_AS_ADVANCED(OPENCOLORIO_${UPPERCOMPONENT}_LIBRARY)
|
||||||
|
ENDFOREACH()
|
||||||
|
|
||||||
UNSET(COMPONENT)
|
UNSET(COMPONENT)
|
||||||
UNSET(UPPERCOMPONENT)
|
UNSET(UPPERCOMPONENT)
|
||||||
UNSET(_opencolorio_FIND_COMPONENTS)
|
UNSET(_opencolorio_FIND_COMPONENTS)
|
||||||
|
|||||||
@@ -110,6 +110,7 @@ ENDIF()
|
|||||||
|
|
||||||
MARK_AS_ADVANCED(
|
MARK_AS_ADVANCED(
|
||||||
OPENIMAGEDENOISE_INCLUDE_DIR
|
OPENIMAGEDENOISE_INCLUDE_DIR
|
||||||
|
OPENIMAGEDENOISE_LIBRARY
|
||||||
)
|
)
|
||||||
|
|
||||||
FOREACH(COMPONENT ${_openimagedenoise_FIND_COMPONENTS})
|
FOREACH(COMPONENT ${_openimagedenoise_FIND_COMPONENTS})
|
||||||
|
|||||||
@@ -362,6 +362,7 @@ if(WITH_BOOST)
|
|||||||
find_package(IcuLinux)
|
find_package(IcuLinux)
|
||||||
endif()
|
endif()
|
||||||
mark_as_advanced(Boost_DIR) # why doesn't boost do this?
|
mark_as_advanced(Boost_DIR) # why doesn't boost do this?
|
||||||
|
mark_as_advanced(Boost_INCLUDE_DIR) # why doesn't boost do this?
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
set(BOOST_INCLUDE_DIR ${Boost_INCLUDE_DIRS})
|
set(BOOST_INCLUDE_DIR ${Boost_INCLUDE_DIRS})
|
||||||
|
|||||||
@@ -31,6 +31,10 @@ if(OPENCOLLADA_ANIMATION_CLIP)
|
|||||||
add_definitions(-DWITH_OPENCOLLADA_ANIMATION_CLIP)
|
add_definitions(-DWITH_OPENCOLLADA_ANIMATION_CLIP)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
|
# In cmake version 3.21 and up, we can instead use the NO_CACHE option for
|
||||||
|
# find_file so we don't need to clear it from the cache here.
|
||||||
|
unset(OPENCOLLADA_ANIMATION_CLIP CACHE)
|
||||||
|
|
||||||
set(INC
|
set(INC
|
||||||
.
|
.
|
||||||
../../blenkernel
|
../../blenkernel
|
||||||
|
|||||||
Reference in New Issue
Block a user