aboutsummaryrefslogtreecommitdiff
path: root/vcpkg/ports/libfreenect2/fix-macbuild.patch
blob: cb675a6690439c446b614162cc63007b7cc29f22 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
diff --git a/CMakeLists.txt b/CMakeLists.txt
index aedc576..4f16abc 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -165,6 +165,8 @@ SET(LIBFREENECT2_DLLS
 SET(HAVE_VideoToolbox "no (Apple only)")
 IF(APPLE)
   FIND_LIBRARY(VIDEOTOOLBOX_LIBRARY VideoToolbox)
+  FIND_LIBRARY(CF_LIBRARY CoreFoundation)
+  FIND_LIBRARY(IOK_LIBRARY IOKit)
 
   SET(HAVE_VideoToolbox no)
   IF(VIDEOTOOLBOX_LIBRARY)
@@ -184,6 +186,8 @@ IF(APPLE)
       ${COREFOUNDATION_LIBRARY}
       ${COREMEDIA_LIBRARY}
       ${COREVIDEO_LIBRARY}
+      ${CF_LIBRARY}
+      ${IOK_LIBRARY}
     )
   ENDIF(VIDEOTOOLBOX_LIBRARY)
 ENDIF(APPLE)