2012-10-09 07:02:04 +04:00
|
|
|
# FreeRDP: A Remote Desktop Protocol Implementation
|
2012-10-14 04:55:28 +04:00
|
|
|
# FreeRDP Clients
|
2011-07-03 20:42:35 +04:00
|
|
|
#
|
2012-10-01 19:48:53 +04:00
|
|
|
# Copyright 2012 Marc-Andre Moreau <marcandre.moreau@gmail.com>
|
2011-07-03 20:42:35 +04: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-14 04:55:28 +04:00
|
|
|
# Clients
|
2011-08-07 21:41:54 +04:00
|
|
|
|
2024-05-07 18:29:12 +03:00
|
|
|
include(CMakeDependentOption)
|
2024-08-09 15:56:06 +03:00
|
|
|
include(InstallFreeRDPDesktop)
|
2024-05-07 18:29:12 +03:00
|
|
|
|
2023-07-24 13:10:44 +03:00
|
|
|
if(WITH_CLIENT_COMMON)
|
|
|
|
add_subdirectory(common)
|
|
|
|
endif()
|
2012-10-14 11:43:10 +04:00
|
|
|
|
2015-11-03 18:16:49 +03:00
|
|
|
if(FREERDP_VENDOR AND WITH_CLIENT)
|
2016-03-29 23:03:15 +03:00
|
|
|
if(WIN32 AND NOT UWP)
|
|
|
|
add_subdirectory(Windows)
|
2014-05-09 20:25:05 +04:00
|
|
|
else()
|
|
|
|
if(WITH_SAMPLE)
|
|
|
|
add_subdirectory(Sample)
|
|
|
|
endif()
|
2011-08-16 22:41:12 +04:00
|
|
|
endif()
|
2012-10-14 04:55:28 +04:00
|
|
|
|
2024-05-16 20:15:03 +03:00
|
|
|
if (WITH_CLIENT_SDL)
|
|
|
|
add_subdirectory(SDL)
|
|
|
|
endif()
|
2022-12-30 13:25:28 +03:00
|
|
|
|
2014-05-09 20:25:05 +04:00
|
|
|
if(WITH_X11)
|
|
|
|
add_subdirectory(X11)
|
|
|
|
endif()
|
2012-08-16 08:07:51 +04:00
|
|
|
|
2016-03-14 15:51:50 +03:00
|
|
|
if(WITH_WAYLAND AND WAYLAND_FOUND)
|
2014-10-13 13:43:16 +04:00
|
|
|
add_subdirectory(Wayland)
|
|
|
|
endif()
|
|
|
|
|
2014-05-09 20:25:05 +04:00
|
|
|
if(APPLE)
|
|
|
|
if(IOS)
|
|
|
|
if(IS_DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR}/iOS")
|
|
|
|
message(STATUS "Adding iOS client")
|
|
|
|
add_subdirectory(iOS)
|
|
|
|
endif()
|
|
|
|
else()
|
2022-02-17 11:12:45 +03:00
|
|
|
option(WITH_CLIENT_MAC "Build native mac client" ON)
|
|
|
|
if (WITH_CLIENT_MAC)
|
|
|
|
add_subdirectory(Mac)
|
|
|
|
endif()
|
2013-02-14 17:59:12 +04:00
|
|
|
endif()
|
|
|
|
endif()
|
2012-10-14 04:55:28 +04:00
|
|
|
|
2014-05-09 20:25:05 +04:00
|
|
|
if(ANDROID)
|
2022-03-25 22:19:26 +03:00
|
|
|
message(STATUS "Android client module is built with Android Studio project")
|
2014-05-09 20:25:05 +04:00
|
|
|
endif()
|
2012-10-22 20:31:30 +04:00
|
|
|
endif()
|
|
|
|
|
2013-09-04 04:37:04 +04:00
|
|
|
# Pick up other clients
|
2015-11-03 18:16:49 +03:00
|
|
|
if(WITH_CLIENT)
|
|
|
|
set(FILENAME "ModuleOptions.cmake")
|
|
|
|
file(GLOB FILEPATHS RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} "*/${FILENAME}")
|
2013-09-04 04:37:04 +04:00
|
|
|
|
2015-11-03 18:16:49 +03:00
|
|
|
foreach(FILEPATH ${FILEPATHS})
|
|
|
|
if(${FILEPATH} MATCHES "^([^/]*)/+${FILENAME}")
|
|
|
|
string(REGEX REPLACE "^([^/]*)/+${FILENAME}" "\\1" FREERDP_CLIENT ${FILEPATH})
|
|
|
|
set(FREERDP_CLIENT_ENABLED 0)
|
|
|
|
include(${FILEPATH})
|
|
|
|
if(FREERDP_CLIENT_ENABLED)
|
|
|
|
if(NOT (${FREERDP_CLIENT_VENDOR} MATCHES "FreeRDP"))
|
|
|
|
list(APPEND FREERDP_EXTRA_CLIENTS ${FREERDP_CLIENT})
|
|
|
|
if(${FREERDP_CLIENT_VENDOR} MATCHES "${VENDOR}")
|
|
|
|
set(CLIENT_VENDOR_PATH "client/${FREERDP_CLIENT}" PARENT_SCOPE)
|
|
|
|
endif()
|
2013-09-10 06:25:47 +04:00
|
|
|
endif()
|
2013-09-04 04:37:04 +04:00
|
|
|
endif()
|
|
|
|
endif()
|
2015-11-03 18:16:49 +03:00
|
|
|
endforeach()
|
2013-09-04 04:37:04 +04:00
|
|
|
|
2015-11-03 18:16:49 +03:00
|
|
|
foreach(FREERDP_CLIENT ${FREERDP_EXTRA_CLIENTS})
|
|
|
|
add_subdirectory(${FREERDP_CLIENT})
|
|
|
|
endforeach()
|
|
|
|
endif()
|
2013-04-05 02:27:47 +04:00
|
|
|
|
2024-03-14 12:21:38 +03:00
|
|
|
if (WITH_FUSE)
|
|
|
|
list(APPEND FREERDP_CLIENT_PC_PRIVATE_LIBS "-lfuse3")
|
|
|
|
endif()
|
|
|
|
|
|
|
|
list(JOIN FREERDP_CLIENT_PC_PRIVATE_LIBS " " FREERDP_CLIENT_PC_PRIVATE_LIBS)
|
2023-10-09 11:00:58 +03:00
|
|
|
include(pkg-config-install-prefix)
|
2024-10-02 23:37:35 +03:00
|
|
|
cleaning_configure_file(${CMAKE_CURRENT_SOURCE_DIR}/freerdp-client.pc.in ${CMAKE_CURRENT_BINARY_DIR}/freerdp-client${FREERDP_VERSION_MAJOR}.pc @ONLY)
|
2024-01-02 21:51:33 +03:00
|
|
|
install(FILES ${CMAKE_CURRENT_BINARY_DIR}/freerdp-client${FREERDP_VERSION_MAJOR}.pc DESTINATION ${PKG_CONFIG_PC_INSTALL_DIR})
|
2016-01-08 16:07:35 +03:00
|
|
|
|
2021-06-10 10:54:35 +03:00
|
|
|
export(PACKAGE freerdp-client)
|
2016-01-08 16:07:35 +03:00
|
|
|
|
2021-06-10 10:54:35 +03:00
|
|
|
SetFreeRDPCMakeInstallDir(FREERDP_CLIENT_CMAKE_INSTALL_DIR "FreeRDP-Client${FREERDP_VERSION_MAJOR}")
|
2016-01-08 16:07:35 +03:00
|
|
|
|
2021-06-10 10:54:35 +03:00
|
|
|
configure_package_config_file(FreeRDP-ClientConfig.cmake.in ${CMAKE_CURRENT_BINARY_DIR}/FreeRDP-ClientConfig.cmake
|
|
|
|
INSTALL_DESTINATION ${FREERDP_CLIENT_CMAKE_INSTALL_DIR}
|
|
|
|
PATH_VARS FREERDP_INCLUDE_DIR)
|
2016-01-08 16:07:35 +03:00
|
|
|
|
2021-06-10 10:54:35 +03:00
|
|
|
write_basic_package_version_file(${CMAKE_CURRENT_BINARY_DIR}/FreeRDP-ClientConfigVersion.cmake
|
|
|
|
VERSION ${FREERDP_VERSION} COMPATIBILITY SameMajorVersion)
|
2016-01-08 16:07:35 +03:00
|
|
|
|
2021-06-10 10:54:35 +03:00
|
|
|
install(FILES ${CMAKE_CURRENT_BINARY_DIR}/FreeRDP-ClientConfig.cmake ${CMAKE_CURRENT_BINARY_DIR}/FreeRDP-ClientConfigVersion.cmake
|
|
|
|
DESTINATION ${FREERDP_CLIENT_CMAKE_INSTALL_DIR})
|
2016-01-08 16:07:35 +03:00
|
|
|
|
2023-05-11 15:15:53 +03:00
|
|
|
install(EXPORT FreeRDP-ClientTargets DESTINATION ${FREERDP_CLIENT_CMAKE_INSTALL_DIR})
|