From: maier Date: Thu, 3 Oct 2013 23:19:13 +0000 (+0000) Subject: Bugfix X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6305baf13907a897016bed1f1870b15e62b9e633;p=dealii-svn.git Bugfix git-svn-id: https://svn.dealii.org/trunk@31110 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/cmake/setup_custom_targets.cmake b/deal.II/cmake/setup_custom_targets.cmake index 3781d4ccd7..58d5baf53a 100644 --- a/deal.II/cmake/setup_custom_targets.cmake +++ b/deal.II/cmake/setup_custom_targets.cmake @@ -18,7 +18,7 @@ # Add convenience targets that build and install only a specific component: # -FOREACH(_component library examples) +FOREACH(_component library) ADD_CUSTOM_TARGET(${_component} COMMAND ${CMAKE_COMMAND} -DCOMPONENT="${_component}" -P cmake_install.cmake @@ -27,7 +27,7 @@ FOREACH(_component library examples) ) ENDFOREACH() -FOREACH(_component compat_files documentation mesh_converter parameter_gui) +FOREACH(_component compat_files documentation examples mesh_converter parameter_gui) STRING(TOUPPER "${_component}" _component_uppercase) IF(DEAL_II_COMPONENT_${_component_uppercase})