mirror of
https://github.com/clangen/musikcube.git
synced 2024-11-19 11:10:52 +00:00
9 lines
252 B
CMake
9 lines
252 B
CMake
if (APPLE)
|
|
find_library(CORE_FOUNDATION_LIBRARY CoreFoundation)
|
|
find_library(SYSTEM_CONFIGURATION_LIBRARY SystemConfiguration)
|
|
list(
|
|
APPEND
|
|
DEFAULT_OS_SYSTEM_LIBS
|
|
${CORE_FOUNDATION_LIBRARY}
|
|
${SYSTEM_CONFIGURATION_LIBRARY})
|
|
endif() |