From: Matthias Maier Date: Fri, 29 Jul 2016 04:58:35 +0000 (-0500) Subject: CMake: Bugfix: Remove forgotten "compat_files" target X-Git-Tag: v8.5.0-rc1~827^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8d9ed6f988e747730af628e1adc456c488eef357;p=dealii.git CMake: Bugfix: Remove forgotten "compat_files" target --- diff --git a/cmake/setup_custom_targets.cmake b/cmake/setup_custom_targets.cmake index e3e4f0b503..1d4ff25041 100644 --- a/cmake/setup_custom_targets.cmake +++ b/cmake/setup_custom_targets.cmake @@ -17,7 +17,6 @@ # Add convenience targets that build and install only a specific component: # # library -# compat_files # documentation # examples # @@ -53,7 +52,7 @@ ENDIF() # The library can always be compiled and/or installed unconditionally ;-) _add_custom_target(library) -FOREACH(_component compat_files documentation examples) +FOREACH(_component documentation examples) STRING(TOUPPER "${_component}" _component_uppercase) IF(DEAL_II_COMPONENT_${_component_uppercase}) _add_custom_target(${_component}) @@ -136,7 +135,6 @@ FILE(WRITE ${CMAKE_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/print_info.cmake # and reruns the configure and generate phases of CMake # rebuild_cache - rerun the configure and generate phases of CMake # -# compat_files - ${_description_string} component 'compat_files' # documentation - ${_description_string} component 'documentation' # examples - ${_description_string} component 'examples' # library - ${_description_string} component 'library'