From: maier Date: Wed, 6 Mar 2013 16:07:13 +0000 (+0000) Subject: Drop the Subversion query from the build system X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=490903888bd961d5d650e74d2a5b1abaa2514e88;p=dealii-svn.git Drop the Subversion query from the build system The idea of querying for branch and revision via CMake directly is broken because this happens at configure and not at build time. git-svn-id: https://svn.dealii.org/branches/branch_cmake@28753 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/cmake/config/CMakeLists.txt b/deal.II/cmake/config/CMakeLists.txt index c5f7d1a6ec..02fc4adc99 100644 --- a/deal.II/cmake/config/CMakeLists.txt +++ b/deal.II/cmake/config/CMakeLists.txt @@ -209,22 +209,4 @@ IF(DEAL_II_COMPONENT_COMPAT_FILES) DESTINATION common COMPONENT compat_files ) - - # - # Export some information about the current svn revision: - # - FIND_PACKAGE(Subversion QUIET) - IF(SUBVERSION_FOUND AND EXISTS ${CMAKE_SOURCE_DIR}/.svn) - SUBVERSION_WC_INFO(${CMAKE_SOURCE_DIR} _svn) - FILE(WRITE ${CMAKE_CURRENT_BINARY_DIR}/Version.svn "${_svn_WC_INFO}") - ELSE() - FILE(WRITE ${CMAKE_CURRENT_BINARY_DIR}/Version.svn "") - ENDIF() - - INSTALL(FILES - ${CMAKE_CURRENT_BINARY_DIR}/Version.svn - DESTINATION common - COMPONENT compat_files - ) - ENDIF()