mirror of
https://github.com/QuasarApp/qca.git
synced 2025-05-10 01:39:34 +00:00
This file must be a part of 4fd11c444a51e8d317b0d68c7b90a8e0f2c6af9f commit. REVIEW: 121703
14 lines
480 B
CMake
14 lines
480 B
CMake
# Copyright (c) 2014, Samuel Gaist, <samuel.gaist@edeltech.ch>
|
|
#
|
|
# Redistribution and use is allowed according to the terms of the BSD license.
|
|
# For details see the accompanying COPYING-CMAKE-SCRIPTS file.
|
|
|
|
INCLUDE(CMakeFindFrameworks)
|
|
|
|
CMAKE_FIND_FRAMEWORKS(CoreFoundation)
|
|
|
|
if (CoreFoundation_FRAMEWORKS)
|
|
set(COREFOUNDATION_LIBRARY "-framework CoreFoundation" CACHE FILEPATH "CoreFoundation framework" FORCE)
|
|
set(COREFOUNDATION_FOUND 1)
|
|
endif (CoreFoundation_FRAMEWORKS)
|