diff options
author | Zack Galbreath <zack.galbreath@kitware.com> | 2013-12-02 20:44:38 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2013-12-05 14:26:00 (GMT) |
commit | 1b173f25b44af406020c6bc440342632e2bbb1d3 (patch) | |
tree | 05da208ca236de9df560fa99aec17bce674fdd86 /Tests/Contracts/vtk542 | |
parent | f282a0bf83acd3e997b55967524fbd487bb6c881 (diff) | |
download | CMake-1b173f25b44af406020c6bc440342632e2bbb1d3.zip CMake-1b173f25b44af406020c6bc440342632e2bbb1d3.tar.gz CMake-1b173f25b44af406020c6bc440342632e2bbb1d3.tar.bz2 |
Tests/Contracts: Update test for VTK release branch
The plan is to reinstate the VTK contracts test so that CMake
& VTK devs will both be made aware when a change in CMake causes
build problems for VTK.
Diffstat (limited to 'Tests/Contracts/vtk542')
-rw-r--r-- | Tests/Contracts/vtk542/CMakeLists.txt | 30 | ||||
-rw-r--r-- | Tests/Contracts/vtk542/RunTest.cmake | 1 |
2 files changed, 0 insertions, 31 deletions
diff --git a/Tests/Contracts/vtk542/CMakeLists.txt b/Tests/Contracts/vtk542/CMakeLists.txt deleted file mode 100644 index cfb8b16..0000000 --- a/Tests/Contracts/vtk542/CMakeLists.txt +++ /dev/null @@ -1,30 +0,0 @@ -# The VTK external project for CMake -# --------------------------------------------------------------------------- -cmake_minimum_required(VERSION 2.8) -project(vtk542) -include(ExternalProject) - - -set(vtk_source "${CMAKE_CURRENT_BINARY_DIR}/VTK-source") -set(vtk_binary "${CMAKE_CURRENT_BINARY_DIR}/VTK-build") - -ExternalProject_Add(VTK - DOWNLOAD_DIR ${CMAKE_CURRENT_BINARY_DIR} - URL "http://www.vtk.org/files/release/5.4/vtk-5.4.2.tar.gz" - URL_MD5 c2c797091d4b2128d9a1bd32c4b78227 - SOURCE_DIR ${vtk_source} - BINARY_DIR ${vtk_binary} - CMAKE_GENERATOR "${CMAKE_GENERATOR}" - CMAKE_ARGS - -DBUILD_EXAMPLES:BOOL=ON - -DBUILD_TESTING:BOOL=ON - INSTALL_COMMAND "" - ) -# make it so that each build will run make in the VTK build tree -ExternalProject_Add_Step(VTK forcebuild - COMMAND ${CMAKE_COMMAND} - -E remove ${CMAKE_CURRENT_BUILD_DIR}/VTK-prefix/src/VTK-stamp/VTK-build - DEPENDEES configure - DEPENDERS build - ALWAYS 1 - ) diff --git a/Tests/Contracts/vtk542/RunTest.cmake b/Tests/Contracts/vtk542/RunTest.cmake deleted file mode 100644 index b4bd5b0..0000000 --- a/Tests/Contracts/vtk542/RunTest.cmake +++ /dev/null @@ -1 +0,0 @@ -set(vtk542_RUN_TEST VTK-build/bin/CommonCxxTests otherArrays) |