summaryrefslogtreecommitdiffstats
path: root/cmake/modules/FindPlist.cmake
diff options
context:
space:
mode:
Diffstat (limited to 'cmake/modules/FindPlist.cmake')
-rw-r--r--cmake/modules/FindPlist.cmake4
1 files changed, 2 insertions, 2 deletions
diff --git a/cmake/modules/FindPlist.cmake b/cmake/modules/FindPlist.cmake
index 862da46..0664c10 100644
--- a/cmake/modules/FindPlist.cmake
+++ b/cmake/modules/FindPlist.cmake
@@ -41,7 +41,7 @@ endif()
41if(PLIST_FOUND) 41if(PLIST_FOUND)
42 set(PLIST_LIBRARIES ${PLIST_LIBRARY}) 42 set(PLIST_LIBRARIES ${PLIST_LIBRARY})
43 set(PLIST_INCLUDE_DIRS ${PLIST_INCLUDE_DIR}) 43 set(PLIST_INCLUDE_DIRS ${PLIST_INCLUDE_DIR})
44 set(PLIST_DEFINITIONS -DHAVE_LIBPLIST=1) 44 set(PLIST_DEFINITIONS -DHAS_AIRPLAY=1)
45 45
46 if(NOT TARGET Plist::Plist) 46 if(NOT TARGET Plist::Plist)
47 add_library(Plist::Plist UNKNOWN IMPORTED) 47 add_library(Plist::Plist UNKNOWN IMPORTED)
@@ -51,7 +51,7 @@ if(PLIST_FOUND)
51 endif() 51 endif()
52 set_target_properties(Plist::Plist PROPERTIES 52 set_target_properties(Plist::Plist PROPERTIES
53 INTERFACE_INCLUDE_DIRECTORIES "${PLIST_INCLUDE_DIR}" 53 INTERFACE_INCLUDE_DIRECTORIES "${PLIST_INCLUDE_DIR}"
54 INTERFACE_COMPILE_DEFINITIONS HAVE_LIBPLIST=1) 54 INTERFACE_COMPILE_DEFINITIONS HAS_AIRPLAY=1)
55 endif() 55 endif()
56endif() 56endif()
57 57