2014-10-13 13:43:16 +04:00
|
|
|
# FreeRDP: A Remote Desktop Protocol Implementation
|
|
|
|
# FreeRDP Wayland Client cmake build script
|
|
|
|
#
|
|
|
|
# Copyright 2014 Manuel Bachmann <tarnyko@tarnyko.net>
|
2016-01-07 01:56:05 +03:00
|
|
|
# Copyright 2015 David Fort <contact@hardening-consulting.com>
|
2014-10-13 13:43:16 +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.
|
|
|
|
|
|
|
|
set(MODULE_NAME "wlfreerdp")
|
|
|
|
set(MODULE_PREFIX "FREERDP_CLIENT_WAYLAND")
|
|
|
|
|
2016-03-01 23:49:21 +03:00
|
|
|
include_directories(${WAYLAND_INCLUDE_DIR})
|
2016-01-18 17:55:33 +03:00
|
|
|
include_directories(${CMAKE_SOURCE_DIR}/uwac/include)
|
2014-10-13 13:43:16 +04:00
|
|
|
|
|
|
|
set(${MODULE_PREFIX}_SRCS
|
2016-01-07 01:56:05 +03:00
|
|
|
wlfreerdp.c
|
|
|
|
wlfreerdp.h
|
2018-12-18 14:30:31 +03:00
|
|
|
wlf_disp.c
|
|
|
|
wlf_disp.h
|
2019-01-25 15:05:51 +03:00
|
|
|
wlf_pointer.c
|
|
|
|
wlf_pointer.h
|
2014-11-17 18:36:28 +03:00
|
|
|
wlf_input.c
|
|
|
|
wlf_input.h
|
2018-12-19 18:18:13 +03:00
|
|
|
wlf_cliprdr.c
|
|
|
|
wlf_cliprdr.h
|
2016-08-03 19:44:26 +03:00
|
|
|
wlf_channels.c
|
|
|
|
wlf_channels.h
|
2016-01-07 01:56:05 +03:00
|
|
|
)
|
2014-10-13 13:43:16 +04:00
|
|
|
|
2019-01-25 13:47:15 +03:00
|
|
|
list (APPEND ${MODULE_PREFIX}_LIBS freerdp-client freerdp uwac)
|
|
|
|
|
2014-10-13 13:43:16 +04:00
|
|
|
add_executable(${MODULE_NAME} ${${MODULE_PREFIX}_SRCS})
|
|
|
|
|
|
|
|
target_link_libraries(${MODULE_NAME} ${${MODULE_PREFIX}_LIBS})
|
|
|
|
|
|
|
|
install(TARGETS ${MODULE_NAME} DESTINATION ${CMAKE_INSTALL_BINDIR} COMPONENT client)
|
|
|
|
|
|
|
|
set_property(TARGET ${MODULE_NAME} PROPERTY FOLDER "Client/Wayland")
|
2017-01-16 13:09:26 +03:00
|
|
|
configure_file(wlfreerdp.1.in ${CMAKE_CURRENT_BINARY_DIR}/wlfreerdp.1)
|
2017-01-16 13:34:32 +03:00
|
|
|
install_freerdp_man(${CMAKE_CURRENT_BINARY_DIR}/wlfreerdp.1 1)
|