blob: 0664c10ddcc2b47372fc5d889f20b949cad44057 (
plain)
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
|
#.rst:
# FindPlist
# ---------
# Finds the Plist library
#
# This will will define the following variables::
#
# PLIST_FOUND - system has Plist library
# PLIST_INCLUDE_DIRS - the Plist library include directory
# PLIST_LIBRARIES - the Plist libraries
# PLIST_DEFINITIONS - the Plist compile definitions
#
# and the following imported targets::
#
# Plist::Plist - The Plist library
if(PKG_CONFIG_FOUND)
pkg_check_modules(PC_PLIST libplist QUIET)
endif()
find_path(PLIST_INCLUDE_DIR plist/plist.h
PATHS ${PC_PLIST_INCLUDEDIR})
set(PLIST_VERSION ${PC_PLIST_VERSION})
include(FindPackageHandleStandardArgs)
if(NOT WIN32)
find_library(PLIST_LIBRARY NAMES plist
PATHS ${PC_PLIST_LIBDIR})
find_package_handle_standard_args(Plist
REQUIRED_VARS PLIST_LIBRARY PLIST_INCLUDE_DIR
VERSION_VAR PLIST_VERSION)
else()
# Dynamically loaded DLL
find_package_handle_standard_args(Plist
REQUIRED_VARS PLIST_INCLUDE_DIR
VERSION_VAR PLIST_VERSION)
endif()
if(PLIST_FOUND)
set(PLIST_LIBRARIES ${PLIST_LIBRARY})
set(PLIST_INCLUDE_DIRS ${PLIST_INCLUDE_DIR})
set(PLIST_DEFINITIONS -DHAS_AIRPLAY=1)
if(NOT TARGET Plist::Plist)
add_library(Plist::Plist UNKNOWN IMPORTED)
if(PLIST_LIBRARY)
set_target_properties(Plist::Plist PROPERTIES
IMPORTED_LOCATION "${PLIST_LIBRARY}")
endif()
set_target_properties(Plist::Plist PROPERTIES
INTERFACE_INCLUDE_DIRECTORIES "${PLIST_INCLUDE_DIR}"
INTERFACE_COMPILE_DEFINITIONS HAS_AIRPLAY=1)
endif()
endif()
mark_as_advanced(PLIST_INCLUDE_DIR PLIST_LIBRARY)
|