1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169
|
ADD_SUBDIRECTORY(Cxx)
IF (VTK_WRAP_TCL)
ADD_SUBDIRECTORY(Tcl)
ENDIF (VTK_WRAP_TCL)
IF (VTK_WRAP_PYTHON)
ADD_SUBDIRECTORY(Python)
ENDIF (VTK_WRAP_PYTHON)
IF(PYTHON_EXECUTABLE)
ADD_TEST(HeaderTesting-Common ${PYTHON_EXECUTABLE}
${VTK_SOURCE_DIR}/Common/Testing/HeaderTesting.py
"${VTK_SOURCE_DIR}/Common"
VTK_COMMON_EXPORT
vtkABI.h
vtkAbstractIterator.h
vtkAbstractList.h
vtkAbstractMap.h
vtkArray.h
vtkArrayCoordinateIterator.h
vtkArrayCoordinates.h
vtkArrayExtents.h
vtkArrayExtentsList.h
vtkArrayInterpolate.h
vtkArrayIteratorIncludes.h
vtkArrayIteratorTemplate.h
vtkArrayMap.h
vtkArrayMapIterator.h
vtkArrayPrint.h
vtkArrayRange.h
vtkArraySort.h
vtkArrayWeights.h
vtkAssemblyPaths.h
vtkBoundingBox.h
vtkBreakPoint.h
vtkByteSwap.h
vtkCallbackCommand.h
vtkColor.h
vtkCommand.h
vtkCommonInformationKeyManager.h
vtkContainer.h
vtkDataArrayCollection.h
vtkDataArrayTemplate.h
vtkDebugLeaks.h
vtkDebugLeaksManager.h
vtkDenseArray.h
vtkDynamicLoader.h
vtkErrorCode.h
vtkEventForwarderCommand.h
vtkFloatingPointExceptions.h
vtkGarbageCollector.h
vtkGarbageCollectorManager.h
vtkHashMap.h
vtkHashMapIterator.h
vtkIOStream.h
vtkIOStreamFwd.h
vtkIdListCollection.h
vtkImplicitFunctionCollection.h
vtkIndent.h
vtkInformation.h
vtkInformationInternals.h
vtkJavaAwt.h
vtkJavaUtil.h
vtkLargeInteger.h
vtkLinkedList.h
vtkLinkedListIterator.h
vtkNew.h
vtkOStrStreamWrapper.h
vtkOStreamWrapper.h
vtkObject.h
vtkObjectBase.h
vtkObjectFactoryCollection.h
vtkOldStyleCallbackCommand.h
vtkOnePieceExtentTranslator.h
vtkOverrideInformationCollection.h
vtkPlaneCollection.h
vtkProcessStatistics.h
vtkPropCollection.h
vtkPythonCommand.h
vtkRayCastStructures.h
vtkRect.h
vtkRungeKutta2.h
vtkSetGet.h
vtkSmartPointer.h
vtkSmartPointerBase.h
vtkSparseArray.h
vtkStdString.h
vtkStructuredData.h
vtkSystemIncludes.h
vtkTcl.h
vtkTclUtil.h
vtkTemplateAliasMacro.h
vtkTimeStamp.h
vtkTk.h
vtkTransformCollection.h
vtkTryDowncast.h
vtkType.h
vtkTypeTemplate.h
vtkTypeTraits.h
vtkTypedArray.h
vtkUnicodeString.h
vtkVariant.h
vtkVariantBoostSerialization.h
vtkVariantCast.h
vtkVariantCreate.h
vtkVariantExtract.h
vtkVariantInlineOperators.h
vtkVector.h
vtkVectorIterator.h
vtkVersion.h
vtkWeakPointer.h
vtkWeakPointerBase.h
vtkWin32Header.h
vtkWinCE.h
vtkWindows.h
vtkXMLFileOutputWindow.h
)
ENDIF(PYTHON_EXECUTABLE)
#-----------------------------------------------------------------------------
# Configure the VTK install test. It is enabled only if the install
# prefix is set to an InstallTest/Root directory under the top of the build
# tree. Note that the install prefix used for the install test must
# not be a 1-level deep subdirectory under the top of the build tree.
# If it were such then a few executables may be confused into thinking
# they are running from the build tree instead of the install tree.
IF(WIN32 OR APPLE)
STRING(TOLOWER "${CMAKE_INSTALL_PREFIX}" VTK_TEST_INSTALL_LEFT)
STRING(TOLOWER "${VTK_BINARY_DIR}/InstallTest/Root" VTK_TEST_INSTALL_RIGHT)
ELSE(WIN32 OR APPLE)
SET(VTK_TEST_INSTALL_LEFT "${CMAKE_INSTALL_PREFIX}")
SET(VTK_TEST_INSTALL_RIGHT "${VTK_BINARY_DIR}/InstallTest/Root")
ENDIF(WIN32 OR APPLE)
STRING(COMPARE EQUAL "${VTK_TEST_INSTALL_LEFT}" "${VTK_TEST_INSTALL_RIGHT}"
VTK_TEST_INSTALL)
# We cannot safely implement the install test unless the configuration
# type is known when the test is run.
IF(NOT VTK_TEST_CONFIG_TYPE_KNOWN)
SET(VTK_TEST_INSTALL 0)
ENDIF(NOT VTK_TEST_CONFIG_TYPE_KNOWN)
IF(VTK_TEST_INSTALL)
IF(CMAKE_CONFIGURATION_TYPES)
# There are multiple configurations. Make sure the tested
# configuration is the one that is installed.
SET(DOLLAR "$")
SET(VTK_INSTALL_TEST_CONFIG_TYPE -C "${DOLLAR}{CTEST_CONFIGURATION_TYPE}")
ELSE(CMAKE_CONFIGURATION_TYPES)
# There is only one configuration. It will be installed.
SET(VTK_INSTALL_TEST_CONFIG_TYPE)
ENDIF(CMAKE_CONFIGURATION_TYPES)
# Add a test to install VTK through the build system install target.
ADD_TEST(Install
${CMAKE_CTEST_COMMAND}
${VTK_INSTALL_TEST_CONFIG_TYPE}
--build-and-test ${CMAKE_SOURCE_DIR} ${CMAKE_BINARY_DIR}
--build-generator ${CMAKE_GENERATOR}
--build-project VTK
--build-makeprogram ${CMAKE_MAKE_PROGRAM}
--build-noclean
--build-target install)
ENDIF(VTK_TEST_INSTALL)
# Suppress memory checking of some tests
CONFIGURE_FILE(${VTK_SOURCE_DIR}/Common/Testing/CTestCustom.ctest.in
${VTK_BINARY_DIR}/Common/Testing/CTestCustom.ctest @ONLY)
|