FreeRDP/libfreerdp-locale/CMakeLists.txt

77 lines
2.3 KiB
CMake
Raw Normal View History

2011-07-02 21:58:55 +04:00
# FreeRDP: A Remote Desktop Protocol Client
# libfreerdp-locale cmake build script
2011-07-02 21:58:55 +04:00
#
# 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.
2011-07-01 04:31:07 +04:00
set(FREERDP_LOCALE_SRCS
virtual_key_codes.c
keyboard_layout.c
2012-02-19 07:04:28 +04:00
keyboard.c
locale.c
timezone.c
2012-02-19 07:04:28 +04:00
liblocale.h)
2011-07-01 04:31:07 +04:00
set(FREERDP_LOCALE_X11_SRCS
keyboard_keymap.c
keyboard_keymap.h
keyboard_x11.c
keyboard_x11.h)
set(FREERDP_LOCALE_XKBFILE_SRCS
keyboard_xkbfile.c
keyboard_xkbfile.h)
2011-07-01 04:31:07 +04:00
set(FREERDP_LOCALE_SUN_SRCS
keyboard_sun.c
keyboard_sun.h)
if(CMAKE_SYSTEM_NAME MATCHES Solaris)
set(WITH_SUN true)
endif()
set(FREERDP_LOCALE_LINK_LIBRARIES freerdp-utils)
2012-02-19 07:04:28 +04:00
if(NOT WIN32)
find_suggested_package(X11)
if(WITH_X11)
add_definitions(-DWITH_X11)
include_directories(${X11_INCLUDE_DIRS})
set(FREERDP_LOCALE_SRCS ${FREERDP_LOCALE_SRCS} ${FREERDP_LOCALE_X11_SRCS})
set(FREERDP_LOCALE_LINK_LIBRARIES ${FREERDP_LOCALE_LINK_LIBRARIES} ${X11_LIBRARIES})
if(WITH_SUN)
add_definitions(-DWITH_SUN)
set(FREERDP_LOCALE_SRCS ${FREERDP_LOCALE_SRCS} ${FREERDP_LOCALE_SUN_SRCS})
elseif(NOT APPLE)
find_suggested_package(XKBFile)
endif()
if(WITH_XKBFILE)
add_definitions(-DWITH_XKBFILE)
include_directories(${XKBFILE_INCLUDE_DIRS})
set(FREERDP_LOCALE_SRCS ${FREERDP_LOCALE_SRCS} ${FREERDP_LOCALE_XKBFILE_SRCS})
set(FREERDP_LOCALE_LINK_LIBRARIES ${FREERDP_LOCALE_LINK_LIBRARIES} ${XKBFILE_LIBRARIES})
endif()
2012-02-19 07:04:28 +04:00
endif()
endif()
2012-02-19 07:04:28 +04:00
add_library(freerdp-locale ${FREERDP_LOCALE_SRCS})
set_target_properties(freerdp-locale PROPERTIES VERSION ${FREERDP_VERSION_FULL} SOVERSION ${FREERDP_VERSION} PREFIX "lib")
2011-07-01 04:31:07 +04:00
target_link_libraries(freerdp-locale ${FREERDP_LOCALE_LINK_LIBRARIES})
install(TARGETS freerdp-locale DESTINATION ${CMAKE_INSTALL_LIBDIR})