File: FindGMTL.cmake

package info (click to toggle)
freespace2 24.0.2%2Brepack-1
  • links: PTS, VCS
  • area: non-free
  • in suites: trixie
  • size: 43,188 kB
  • sloc: cpp: 583,107; ansic: 21,729; python: 1,174; sh: 464; makefile: 248; xml: 181
file content (111 lines) | stat: -rw-r--r-- 3,020 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
# - Try to find GMTL
# Optionally uses Flagpoll and FindFlagpoll.cmake
# Once done, this will define
#
#  GMTL_FOUND - system has GMTL
#  GMTL_INCLUDE_DIR - the GMTL include directory
#
# Useful configuration variables you might want to add to your cache:
#  GMTL_ROOT_DIR - A directory prefix to search
#                  (a path that contains include/ as a subdirectory)
#  GMTL_ADDITIONAL_VERSIONS - Additional versions (outside of 0.5.1 to 0.7.0)
#                             to use when constructing search names and paths
#
# This script will use Flagpoll, if found, to provide hints to the location
# of this library, but does not use the compiler flags returned by Flagpoll
# directly.
#
# VR Juggler requires this package, so this Find script takes that into
# account when determining where to search for the desired files.
# The VJ_BASE_DIR environment variable is searched (preferentially)
# when searching for this package, so most sane VR Juggler build environments
# should "just work."  Note that you need to manually re-run CMake if you
# change this environment variable, because it cannot auto-detect this change
# and trigger an automatic re-run.
#
# Original Author:
# 2009-2012 Ryan Pavlik <rpavlik@iastate.edu> <abiryan@ryand.net>
# http://academic.cleardefinition.com
# Iowa State University HCI Graduate Program/VRAC
#
# Copyright Iowa State University 2009-2012.
# Distributed under the Boost Software License, Version 1.0.
# (See accompanying file LICENSE_1_0.txt or copy at
# http://www.boost.org/LICENSE_1_0.txt)

set(_HUMAN "GMTL")
set(_HEADER gmtl/gmtl.h)
set(_FP_PKG_NAME gmtl)

include(CheckVersion)

set(GMTL_VERSIONS
	${GMTL_ADDITIONAL_VERSIONS}
	0.7.0
	0.6.2
	0.6.1
	0.6.0
	0.5.4
	0.5.3
	0.5.2
	0.5.1)
set(GMTL_DIRS)
foreach(_version ${GMTL_VERSIONS})
	check_version(_ver_ok GMTL ${_version})
	if(_ver_ok)
		list(APPEND GMTL_DIRS gmtl-${_version})
		list(APPEND GMTL_HEADER_DIRS include/gmtl-${_version})
	endif()
endforeach()

include(SelectLibraryConfigurations)
include(CreateImportedTarget)
include(CleanDirectoryList)

# Try flagpoll.
find_package(Flagpoll QUIET)

if(FLAGPOLL)
	flagpoll_get_include_dirs(${_FP_PKG_NAME})
endif()

set(GMTL_ROOT_DIR
	"${GMTL_ROOT_DIR}"
	CACHE
	PATH
	"Root directory to search for GMTL")
if(DEFINED VRJUGGLER22_ROOT_DIR)
	mark_as_advanced(GMTL_ROOT_DIR)
endif()
if(NOT GMTL_ROOT_DIR)
	set(GMTL_ROOT_DIR "${VRJUGGLER22_ROOT_DIR}")
endif()

set(_ROOT_DIR "${GMTL_ROOT_DIR}")

# Include dir
find_path(GMTL_INCLUDE_DIR
	NAMES
	${_HEADER}
	HINTS
	"${_ROOT_DIR}"
	${${_FP_PKG_NAME}_FLAGPOLL_INCLUDE_DIRS}
	PATHS
	PATH_SUFFIXES
	${GMTL_DIRS}
	${GMTL_HEADER_DIRS}
	include/
	DOC
	"GMTL include path")

# handle the QUIETLY and REQUIRED arguments and set xxx_FOUND to TRUE if
# all listed variables are TRUE
include(FindPackageHandleStandardArgs)
find_package_handle_standard_args(GMTL DEFAULT_MSG GMTL_INCLUDE_DIR)

if(GMTL_FOUND)
	set(GMTL_INCLUDE_DIRS "${GMTL_INCLUDE_DIR}")
	mark_as_advanced(GMTL_ROOT_DIR)
endif()

mark_as_advanced(GMTL_INCLUDE_DIR)