File: FindDoubleConversion.cmake

package info (click to toggle)
lib2geom 1.4-5
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 6,124 kB
  • sloc: cpp: 64,251; python: 2,889; ansic: 1,963; makefile: 37
file content (27 lines) | stat: -rw-r--r-- 888 bytes parent folder | download | duplicates (10)
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
# - Try to find double-conversion
# Once done, this will define
#
# DoubleConversion_FOUND - system has double-conversion
# DoubleConversion_INCLUDE_DIRS - the double-conversion include directories
# DoubleConversion_LIBRARIES - link these to use double-conversion

include(FindPackageHandleStandardArgs)

find_library(DoubleConversion_LIBRARY double-conversion
  PATHS ${DoubleConversion_LIBRARYDIR})

find_path(DoubleConversion_INCLUDE_DIR double-conversion/double-conversion.h
  PATHS ${DoubleConversion_INCLUDEDIR})

find_package_handle_standard_args(DoubleConversion DEFAULT_MSG
  DoubleConversion_LIBRARY
  DoubleConversion_INCLUDE_DIR)

mark_as_advanced(
  DoubleConversion_LIBRARY
  DoubleConversion_INCLUDE_DIR)

if(DoubleConversion_FOUND)
  set(DoubleConversion_LIBRARIES ${DoubleConversion_LIBRARY})
  set(DoubleConversion_INCLUDE_DIRS ${DoubleConversion_INCLUDE_DIR})
endif()