FreeRDP/client/X11/CMakeLists.txt

99 lines
2.7 KiB
CMake
Raw Normal View History

2011-08-07 17:52:40 +04:00
# FreeRDP: A Remote Desktop Protocol Client
# FreeRDP X11 Client
#
# Copyright 2011 O.S. Systems Software Ltda.
# Copyright 2011 Otavio Salvador <otavio@ossystems.com.br>
# Copyright 2011 Marc-Andre Moreau <marcandre.moreau@gmail.com>
#
# 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.
include(FindXmlto)
include_directories(${X11_INCLUDE_DIRS})
2011-08-07 17:52:40 +04:00
add_executable(xfreerdp
2011-08-26 02:07:52 +04:00
xf_gdi.c
xf_gdi.h
xf_rail.c
xf_rail.h
2011-09-20 12:27:59 +04:00
xf_tsmf.c
xf_tsmf.h
2011-08-07 17:52:40 +04:00
xf_event.c
xf_event.h
xf_cliprdr.c
xf_cliprdr.h
xf_monitor.c
xf_monitor.h
xf_graphics.c
xf_graphics.h
xf_keyboard.c
xf_keyboard.h
2011-08-09 06:24:12 +04:00
xf_window.c
xf_window.h
2011-08-07 17:52:40 +04:00
xfreerdp.c
xfreerdp.h)
if(WITH_MANPAGES)
if(XMLTO_FOUND)
add_custom_command(OUTPUT xfreerdp.1
COMMAND ${XMLTO_EXECUTABLE} man ${CMAKE_CURRENT_SOURCE_DIR}/xfreerdp.1.xml
DEPENDS xfreerdp.1.xml)
add_custom_target(xfreerdp.manpage ALL
DEPENDS xfreerdp.1)
install(FILES ${CMAKE_CURRENT_BINARY_DIR}/xfreerdp.1 DESTINATION share/man/man1)
else(XMLTO_FOUND)
message(WARNING "WITH_MANPAGES was set, but xmlto was not found. man-pages will not be installed")
endif(XMLTO_FOUND)
endif(WITH_MANPAGES)
find_suggested_package(Xinerama)
if(WITH_XINERAMA)
add_definitions(-DWITH_XINERAMA -DWITH_XEXT)
include_directories(${XINERAMA_INCLUDE_DIRS})
target_link_libraries(xfreerdp ${XINERAMA_LIBRARIES})
endif()
2011-08-07 17:52:40 +04:00
find_suggested_package(Xext)
if(WITH_XEXT)
add_definitions(-DWITH_XEXT)
include_directories(${XEXT_INCLUDE_DIRS})
target_link_libraries(xfreerdp ${XEXT_LIBRARIES})
endif()
find_suggested_package(Xcursor)
if(WITH_XCURSOR)
add_definitions(-DWITH_XCURSOR)
2011-09-29 08:33:16 +04:00
include_directories(${XCURSOR_INCLUDE_DIRS})
target_link_libraries(xfreerdp ${XCURSOR_LIBRARIES})
endif()
2011-09-20 12:27:59 +04:00
find_suggested_package(Xv)
if(WITH_XV)
2011-09-20 12:27:59 +04:00
add_definitions(-DWITH_XV)
include_directories(${XV_INCLUDE_DIRS})
target_link_libraries(xfreerdp ${XV_LIBRARIES})
endif()
2011-10-22 20:55:03 +04:00
include_directories(${CMAKE_SOURCE_DIR}/resources)
2011-08-07 17:52:40 +04:00
target_link_libraries(xfreerdp freerdp-core)
target_link_libraries(xfreerdp freerdp-gdi)
target_link_libraries(xfreerdp freerdp-locale)
target_link_libraries(xfreerdp freerdp-rail)
target_link_libraries(xfreerdp freerdp-channels)
2011-08-07 17:52:40 +04:00
target_link_libraries(xfreerdp freerdp-utils)
target_link_libraries(xfreerdp ${X11_LIBRARIES} ${CMAKE_DL_LIBS})
2011-09-25 11:12:29 +04:00
install(TARGETS xfreerdp DESTINATION ${CMAKE_INSTALL_BINDIR})