93ff550ae0
We split the one massive source file into multiple separate source files and headers, just like it is done for other clients. We add a new "wlfInput" interface which will try to initialize mouse and keyboard at startup. Mouse inputs already work, keyboard inputs need further investigation. Signed-off-by: Manuel Bachmann <tarnyko@tarnyko.net>
42 lines
1.4 KiB
CMake
42 lines
1.4 KiB
CMake
# FreeRDP: A Remote Desktop Protocol Implementation
|
|
# FreeRDP Wayland Client cmake build script
|
|
#
|
|
# Copyright 2014 Manuel Bachmann <tarnyko@tarnyko.net>
|
|
#
|
|
# 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")
|
|
|
|
include_directories(${WAYLAND_INCLUDE_DIRS})
|
|
|
|
set(${MODULE_PREFIX}_SRCS
|
|
wlf_display.c
|
|
wlf_display.h
|
|
wlf_window.c
|
|
wlf_window.h
|
|
wlf_input.c
|
|
wlf_input.h
|
|
wlfreerdp.c
|
|
wlfreerdp.h)
|
|
|
|
add_executable(${MODULE_NAME} ${${MODULE_PREFIX}_SRCS})
|
|
|
|
set(${MODULE_PREFIX}_LIBS ${${MODULE_PREFIX}_LIBS} ${CMAKE_DL_LIBS})
|
|
set(${MODULE_PREFIX}_LIBS ${${MODULE_PREFIX}_LIBS} ${WAYLAND_LIBRARIES} freerdp-client freerdp)
|
|
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")
|