root/CMake_modules/FindITPP.cmake @ 211

Revision 211, 1.2 kB (checked in by smidl, 16 years ago)

prejmenovani evalpdflog a evalcond

  • Property svn:eol-style set to native
Line 
1# - Find ITPP
2# Find the native ITPP includes and library
3# This module defines
4#  ITPP_INCLUDE_DIR, where to find itpp/itbase.h, etc.
5#  ITPP_LIBRARIES, the libraries needed to use ITPP.
6#  ITPP_FOUND, If false, do not try to use ITPP.
7# also defined, but not for general use are
8#  ITPP_LIBRARY, where to find the ITPP library.
9
10MESSAGE("ITPP_DIR set to ${ITPP_DIR}" )
11
12FIND_PATH(ITPP_INCLUDE_DIR itpp/itbase.h
13        ${ITPP_DIR}/include
14        /usr/pkgs64/include
15  )
16
17FIND_LIBRARY(ITPP_LIBRARY
18  NAMES itpp itpp_debug
19  PATHS ${ITPP_DIR}/libs
20  "${ITPP_DIR}\\win32\\lib"
21  /usr/pkgs64/lib
22  NO_DEFAULT_PATH
23)
24
25IF (ITPP_LIBRARY AND ITPP_INCLUDE_DIR)
26    SET(ITPP_LIBRARIES ${ITPP_LIBRARY})
27    SET(ITPP_FOUND "YES")
28ELSE (ITPP_LIBRARY AND ITPP_INCLUDE_DIR)
29  SET(ITPP_FOUND "NO")
30ENDIF (ITPP_LIBRARY AND ITPP_INCLUDE_DIR)
31
32
33IF (ITPP_FOUND)
34   IF (NOT ITPP_FIND_QUIETLY)
35      MESSAGE(STATUS "Found ITPP: ${ITPP_LIBRARIES}")
36   ENDIF (NOT ITPP_FIND_QUIETLY)
37ELSE (ITPP_FOUND)
38   IF (ITPP_FIND_REQUIRED)
39      MESSAGE(FATAL_ERROR "Could not find ITPP library")
40   ENDIF (ITPP_FIND_REQUIRED)
41ENDIF (ITPP_FOUND)
42
43# Deprecated declarations.
44GET_FILENAME_COMPONENT (NATIVE_ITPP_LIB_PATH ${ITPP_LIBRARY} PATH)
45
46MARK_AS_ADVANCED(
47  ITPP_LIBRARY
48  ITPP_INCLUDE_DIR
49  )
Note: See TracBrowser for help on using the browser.