diff options
author | Luis Ibanez <luis.ibanez@kitware.com> | 2001-05-23 15:34:19 (GMT) |
---|---|---|
committer | Luis Ibanez <luis.ibanez@kitware.com> | 2001-05-23 15:34:19 (GMT) |
commit | fa021758dae247ce8b9eff987d5889718f0d5f57 (patch) | |
tree | 46fbbd4aa0418cbc5fcb6819d9041df651cc81d8 /Modules | |
parent | dbebd0a276490134b9df38cc3c69b1104f2ea71a (diff) | |
download | CMake-fa021758dae247ce8b9eff987d5889718f0d5f57.zip CMake-fa021758dae247ce8b9eff987d5889718f0d5f57.tar.gz CMake-fa021758dae247ce8b9eff987d5889718f0d5f57.tar.bz2 |
Module to search for VTK include and library paths
Diffstat (limited to 'Modules')
-rw-r--r-- | Modules/FindVTK.cmake | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/Modules/FindVTK.cmake b/Modules/FindVTK.cmake new file mode 100644 index 0000000..56bdc91 --- /dev/null +++ b/Modules/FindVTK.cmake @@ -0,0 +1,16 @@ +# +# Find the native VTK includes and library +# + + +FIND_PATH(VTK_INCLUDE_PATH vtk.h +/usr/local/include +/usr/include +/usr/local/vtk +H:/usr/local/vtk +) + +FIND_LIBRARY(VTK_LIB_PATH vtk.dll +PATHS /usr/lib /usr/local/lib /usr/local/vtk/lib H:/usr/local/vtk/lib +) + |