aboutsummaryrefslogtreecommitdiffstats
path: root/cmake
diff options
context:
space:
mode:
authorPeter Wu <peter@lekensteyn.nl>2019-02-10 19:36:00 +0100
committerAnders Broman <a.broman58@gmail.com>2019-02-11 05:05:49 +0000
commit203839df3d4d31f9fae6cb709635bdc95aa60bfd (patch)
treecfcfb9530e64bc3b3b3af3177b7135cdd5f42e98 /cmake
parent7bb8d5ad31f71e38d782e9bad9487ce3030697b5 (diff)
CMake: remove unused FindMACOS_FRAMEWORKS.cmake file
This was added in v1.99.0-rc1-578-gdbd409d041, but was never used. Change-Id: Ieb202693d555ff62ff13aca46b0f289f0d4c6cfb Reviewed-on: https://code.wireshark.org/review/31959 Petri-Dish: Peter Wu <peter@lekensteyn.nl> Tested-by: Petri Dish Buildbot Reviewed-by: Anders Broman <a.broman58@gmail.com>
Diffstat (limited to 'cmake')
-rw-r--r--cmake/modules/FindMACOS_FRAMEWORKS.cmake22
1 files changed, 0 insertions, 22 deletions
diff --git a/cmake/modules/FindMACOS_FRAMEWORKS.cmake b/cmake/modules/FindMACOS_FRAMEWORKS.cmake
deleted file mode 100644
index df9cf5a157..0000000000
--- a/cmake/modules/FindMACOS_FRAMEWORKS.cmake
+++ /dev/null
@@ -1,22 +0,0 @@
-#
-# - Find macOS frameworks
-# Find various macOS frameworks if we're on macOS
-#
-# APPLE_APPLICATION_SERVICES_LIBRARY - ApplicationServices framework
-# APPLE_CORE_FOUNDATION_LIBRARY - CoreFoundation frameowkr
-# APPLE_SYSTEM_CONFIGURATION_LIBRARY - SystemConfiguration framework
-# HAVE_MACOS_FRAMEWORKS - True if we're on macOS
-
-
-if(APPLE)
- #
- # We assume that APPLE means macOS so that we have the macOS
- # frameworks.
- #
- set(HAVE_MACOS_FRAMEWORKS 1)
- set(MACOS_FRAMEWORKS_FOUND TRUE)
- FIND_LIBRARY (APPLE_APPLICATION_SERVICES_LIBRARY ApplicationServices)
- FIND_LIBRARY (APPLE_APPKIT_LIBRARY AppKit)
- FIND_LIBRARY (APPLE_CORE_FOUNDATION_LIBRARY CoreFoundation)
- FIND_LIBRARY (APPLE_SYSTEM_CONFIGURATION_LIBRARY SystemConfiguration)
-endif()