From: Matthias Maier Date: Mon, 24 Sep 2012 23:15:03 +0000 (+0000) Subject: Mark some cached variables as advanced X-Git-Tag: v8.0.0~1079^2~672 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0638b0dc0ed62533b6e01fe1f4ede875e0a20086;p=dealii.git Mark some cached variables as advanced git-svn-id: https://svn.dealii.org/branches/branch_cmake@26695 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/cmake/setup_cached_variables.cmake b/deal.II/cmake/setup_cached_variables.cmake index b1b27754ec..1a7ab52501 100644 --- a/deal.II/cmake/setup_cached_variables.cmake +++ b/deal.II/cmake/setup_cached_variables.cmake @@ -32,6 +32,7 @@ ENDIF() SET(BUILD_SHARED_LIBS "ON" CACHE BOOL "Build a shared library" ) +MARK_AS_ADVANCED(BUILD_SHARED_LIBS) # @@ -39,8 +40,9 @@ SET(BUILD_SHARED_LIBS "ON" CACHE BOOL # cache so that the user can see the value. # SET(CMAKE_INSTALL_RPATH_USE_LINK_PATH "ON" CACHE BOOL - "Set the rpath of the library to the external link pathes on installation - ") + "Set the rpath of the library to the external link pathes on installation" + ) +MARK_AS_ADVANCED(CMAKE_INSTALL_RPATH_USE_LINK_PATH) # @@ -107,5 +109,9 @@ FOREACH(flag ${deal_ii_used_flags}) SET(${flag}_SAVED "${${flag}}") SET(${flag} "") + # + # Mark these flags as advanced. + # + MARK_AS_ADVANCED(${flag}) ENDFOREACH()