File: CMakeLists.txt

package info (click to toggle)
vtk6 6.3.0%2Bdfsg2-2
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 118,880 kB
  • sloc: cpp: 1,442,792; ansic: 113,395; python: 72,383; tcl: 46,998; xml: 8,119; yacc: 4,525; java: 4,239; perl: 3,108; lex: 1,694; sh: 1,093; asm: 154; makefile: 103; objc: 17
file content (50 lines) | stat: -rw-r--r-- 1,607 bytes parent folder | download | duplicates (3)
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
# These tests are built under all conditions
set (GenericVolumePythonTests
     cursor3D.py
     gaussian.py
     TestFixedPointRayCasterLinearCropped.py,NO_RT
     TestFixedPointRayCasterLinear.py,NO_RT
     TestFixedPointRayCasterNearestCropped.py,NO_RT
     TestFixedPointRayCasterNearest.py,NO_RT
     volRCClipPlanes.py
     volRCCropRegions.py
     volRCRotateClip.py
     VolumePickerCrop.py
     VolumePicker.py,NO_RT)

# These tests are only built when the rendering backend is OpenGL
set (VolumeOpenGLPythonTests
     TestBunykRayCastFunction.py
     TestLODProp3D.py
     TestPTZSweep.py
     volTM2DCropRegions.py
     volTM2DRotateClip.py
     volTM3DCompressedCropRegions.py
     volTM3DCropRegions.py
     volTM3DRotateClip.py
     VolumeOutlineSourceClipped.py
     VolumeOutlineSource.py)

# These tests are only built when the rendering backend is OpenGL2
set (VolumeOpenGL2PythonTests
     TestGPURayCastIndependentComponent.py,NO_RT
     TestGPURayCastIndependentComponentMIP.py,NO_RT
     TestGPURayCastIndependentComponentMinIP.py,NO_RT)

if ("${VTK_RENDERING_BACKEND}" STREQUAL "OpenGL2")
  vtk_add_test_python(
    ${GenericVolumePythonTests}
    ${VolumeOpenGL2PythonTests}
    )
else ()
  vtk_add_test_python(
    ${GenericVolumePythonTests}
    ${VolumeOpenGLPythonTests}
    )
  set_tests_properties(vtkRenderingVolumePython-volTM3DCompressedCropRegions
    PROPERTIES TIMEOUT 250)
  set_tests_properties(vtkRenderingVolumePython-volTM3DCropRegions
    PROPERTIES TIMEOUT 250)
  set_tests_properties(vtkRenderingVolumePython-volTM3DRotateClip
    PROPERTIES TIMEOUT 80)
endif ()