From 8d9ed6f988e747730af628e1adc456c488eef357 Mon Sep 17 00:00:00 2001 From: Matthias Maier Date: Thu, 28 Jul 2016 23:58:35 -0500 Subject: [PATCH] CMake: Bugfix: Remove forgotten "compat_files" target --- cmake/setup_custom_targets.cmake | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) 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' -- 2.39.5