From: maier Date: Sun, 15 Sep 2013 09:57:19 +0000 (+0000) Subject: CMake: Bugfix, look for template-arguments at the right place X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c445de2f73be36a880e2633d7d774f3cb90dc3f0;p=dealii-svn.git CMake: Bugfix, look for template-arguments at the right place git-svn-id: https://svn.dealii.org/trunk@30709 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/cmake/macros/macro_expand_instantiations.cmake b/deal.II/cmake/macros/macro_expand_instantiations.cmake index c842ba0d96..684860d475 100644 --- a/deal.II/cmake/macros/macro_expand_instantiations.cmake +++ b/deal.II/cmake/macros/macro_expand_instantiations.cmake @@ -41,10 +41,10 @@ MACRO(EXPAND_INSTANTIATIONS _target _inst_in_files) ADD_CUSTOM_COMMAND( OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/${_inst_file} DEPENDS expand_instantiations - ${CMAKE_BINARY_DIR}/cmake/config/template-arguments + ${CMAKE_BINARY_DIR}/${DEAL_II_COMMON_RELDIR}/template-arguments ${CMAKE_CURRENT_SOURCE_DIR}/${_inst_in_file} COMMAND expand_instantiations - ARGS ${CMAKE_BINARY_DIR}/cmake/config/template-arguments + ARGS ${CMAKE_BINARY_DIR}/${DEAL_II_COMMON_RELDIR}/template-arguments < ${CMAKE_CURRENT_SOURCE_DIR}/${_inst_in_file} > ${CMAKE_CURRENT_BINARY_DIR}/${_inst_file} )