2012-10-08 23:02:04 -04:00
|
|
|
# FreeRDP: A Remote Desktop Protocol Implementation
|
2012-05-02 20:15:27 -07:00
|
|
|
# FreeRDP cmake build script
|
|
|
|
|
#
|
|
|
|
|
# Copyright 2012 Laxmikant Rashinkar <LK.Rashinkar@gmail.com>
|
2012-10-04 16:54:16 -04:00
|
|
|
# Copyright 2012 Marc-Andre Moreau <marcandre.moreau@gmail.com>
|
2013-02-19 15:06:42 -05:00
|
|
|
# Copyright 2013 Corey Clayton <can.of.tuna@gmail.com>
|
2012-05-02 20:15:27 -07:00
|
|
|
#
|
|
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
|
# you may not use this file except in compliance with the License.
|
|
|
|
|
# You may obtain a copy of the License at
|
|
|
|
|
#
|
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
#
|
|
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
|
# See the License for the specific language governing permissions and
|
|
|
|
|
# limitations under the License.
|
|
|
|
|
|
2012-10-17 02:14:19 -04:00
|
|
|
define_channel_client_subsystem("rdpsnd" "mac" "")
|
|
|
|
|
|
2020-05-11 09:56:18 +02:00
|
|
|
find_library(COCOA_LIBRARY Cocoa REQUIRED)
|
2024-11-27 20:31:31 +01:00
|
|
|
find_library(CORE_FOUNDATION CoreFoundation)
|
|
|
|
|
find_library(CORE_AUDIO CoreAudio REQUIRED)
|
|
|
|
|
find_library(AUDIO_TOOL AudioToolbox REQUIRED)
|
|
|
|
|
find_library(AV_FOUNDATION AVFoundation REQUIRED)
|
2013-02-05 17:22:34 -05:00
|
|
|
|
2024-11-27 20:31:31 +01:00
|
|
|
set(${MODULE_PREFIX}_SRCS rdpsnd_mac.m)
|
2012-05-02 20:15:27 -07:00
|
|
|
|
2023-02-20 11:18:43 +01:00
|
|
|
set(${MODULE_PREFIX}_LIBS
|
2024-11-27 20:31:31 +01:00
|
|
|
winpr
|
2023-02-20 11:18:43 +01:00
|
|
|
freerdp
|
2013-02-05 17:22:34 -05:00
|
|
|
${AUDIO_TOOL}
|
2019-08-02 11:31:37 +02:00
|
|
|
${AV_FOUNDATION}
|
2013-02-05 17:22:34 -05:00
|
|
|
${CORE_AUDIO}
|
2020-05-11 09:56:18 +02:00
|
|
|
${COCOA_LIBRARY}
|
2023-02-20 11:18:43 +01:00
|
|
|
${CORE_FOUNDATION}
|
|
|
|
|
)
|
2014-09-12 00:19:53 +02:00
|
|
|
|
2023-02-20 11:18:43 +01:00
|
|
|
include_directories(..)
|
2024-08-26 11:01:54 +02:00
|
|
|
include_directories(SYSTEM ${MACAUDIO_INCLUDE_DIRS})
|
2012-05-02 20:15:27 -07:00
|
|
|
|
2023-02-20 11:18:43 +01:00
|
|
|
add_channel_client_subsystem_library(${MODULE_PREFIX} ${MODULE_NAME} ${CHANNEL_NAME} "" TRUE "")
|