mirror of
https://gitlab.kitware.com/cmake/cmake.git
synced 2026-09-25 04:09:36 +03:00
17 lines
257 B
CMake
17 lines
257 B
CMake
#
|
|
# 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
|
|
)
|
|
|