summaryrefslogtreecommitdiffstats
path: root/Modules
diff options
context:
space:
mode:
authorLuis Ibanez <luis.ibanez@kitware.com>2001-05-23 15:34:19 (GMT)
committerLuis Ibanez <luis.ibanez@kitware.com>2001-05-23 15:34:19 (GMT)
commitfa021758dae247ce8b9eff987d5889718f0d5f57 (patch)
tree46fbbd4aa0418cbc5fcb6819d9041df651cc81d8 /Modules
parentdbebd0a276490134b9df38cc3c69b1104f2ea71a (diff)
downloadCMake-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.cmake16
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
+)
+