~ubuntu-branches/ubuntu/jaunty/cmake/jaunty-security

« back to all changes in this revision

Viewing changes to Modules/FindVTK.cmake

  • Committer: Bazaar Package Importer
  • Author(s): A. Maitland Bottoms
  • Date: 2006-06-18 16:34:11 UTC
  • mfrom: (1.4.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20060618163411-pi234s3v6jwlcmof
Tags: 2.4.2-1
* New upstream release (Closes: #338324)
* Put cmake .vim files into /usr/share/vim/addons/plugin/
  where they can be used. (Closes: #366663)
* Install cmake-mode.el so it can be used. (Closes: #366664)
* Ensure cmake FindKDE locates KDE libraries on Debian
  based distributions.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#
2
 
# Find a VTK installation or build tree.
3
 
#
 
1
# - Find a VTK installation or build tree.
4
2
# The following variables are set if VTK is found.  If VTK is not
5
3
# found, VTK_FOUND is set to false.
6
 
#
7
 
# VTK_FOUND          - Set to true when VTK is found.
8
 
# VTK_USE_FILE       - CMake source file to setup a project to use VTK.
9
 
# VTK_MAJOR_VERSION  - The VTK major version number.
10
 
# VTK_MINOR_VERSION  - The VTK minor version number (odd for non-release).
11
 
# VTK_BUILD_VERSION  - The VTK patch level (meaningless for odd minor).
12
 
# VTK_INCLUDE_DIRS   - Include directories for VTK headers.
13
 
# VTK_LIBRARY_DIRS   - Link directories for VTK libraries.
14
 
# VTK_KITS           - List of VTK kits, in all CAPS (COMMON, IO, ...).
15
 
# VTK_LANGUAGES      - List of wrapped languages, in all CAPS (TCL, ...).
16
 
#
 
4
#  VTK_FOUND         - Set to true when VTK is found.
 
5
#  VTK_USE_FILE      - CMake file to use VTK.
 
6
#  VTK_MAJOR_VERSION - The VTK major version number.
 
7
#  VTK_MINOR_VERSION - The VTK minor version number 
 
8
#                       (odd non-release).
 
9
#  VTK_BUILD_VERSION - The VTK patch level 
 
10
#                       (meaningless for odd minor).
 
11
#  VTK_INCLUDE_DIRS  - Include directories for VTK
 
12
#  VTK_LIBRARY_DIRS  - Link directories for VTK libraries
 
13
#  VTK_KITS          - List of VTK kits, in CAPS 
 
14
#                      (COMMON,IO,) etc.
 
15
#  VTK_LANGUAGES     - List of wrapped languages, in CAPS
 
16
#                      (TCL, PYHTON,) etc.
17
17
# The following cache entries must be set by the user to locate VTK:
18
 
#
19
 
# VTK_DIR      - The directory containing VTKConfig.cmake.  This is either
20
 
#                the root of the build tree, or the lib/vtk
21
 
#                directory.  This is the only cache entry.
22
 
#
23
 
# The following variables are set for backward compatability and
 
18
#  VTK_DIR  - The directory containing VTKConfig.cmake.  
 
19
#             This is either the root of the build tree,
 
20
#             or the lib/vtk directory.  This is the 
 
21
#             only cache entry.
 
22
# The following variables are set for backward compatibility and
24
23
# should not be used in new code:
25
 
#
26
 
# USE_VTK_FILE - The full path to the UseVTK.cmake file.  This is provided
27
 
#                for backward compatability.  Use VTK_USE_FILE instead.
 
24
#  USE_VTK_FILE - The full path to the UseVTK.cmake file.
 
25
#                 This is provided for backward 
 
26
#                 compatibility.  Use VTK_USE_FILE 
 
27
#                 instead.
28
28
#
29
29
 
30
30
# Construct consitent error messages for use below.