summaryrefslogtreecommitdiff
path: root/libproxy/cmake/modules/config_macosx.cmk
blob: 110d4b816e7128113850e4f04effd240b5ef6340 (plain)
1
2
3
4
5
6
7
8
9
10
if(APPLE)
  find_library(SC_LIBRARIES SystemConfiguration)
  find_library(CF_LIBRARIES CoreFoundation)
  if(SC_LIBRARIES)
    set(SC_FOUND 1)
  endif()
  if(CF_LIBRARIES)
    set(CF_FOUND 1)
  endif()
endif()