2011-07-02 21:58:55 +04:00
|
|
|
# FreeRDP: A Remote Desktop Protocol Client
|
2012-02-18 02:43:00 +04:00
|
|
|
# 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
|
|
|
|
2012-02-18 02:43:00 +04:00
|
|
|
set(FREERDP_LOCALE_SRCS
|
2012-03-24 04:57:09 +04:00
|
|
|
virtual_key_codes.c
|
2012-02-19 08:08:17 +04:00
|
|
|
keyboard_layout.c
|
2012-02-19 07:04:28 +04:00
|
|
|
keyboard.c
|
2012-02-19 08:08:17 +04:00
|
|
|
locale.c
|
2012-02-20 06:08:12 +04:00
|
|
|
timezone.c
|
2012-02-19 07:04:28 +04:00
|
|
|
liblocale.h)
|
2011-07-01 04:31:07 +04:00
|
|
|
|
2012-02-19 07:54:44 +04:00
|
|
|
set(FREERDP_LOCALE_X11_SRCS
|
2012-03-24 04:57:09 +04:00
|
|
|
keyboard_keymap.c
|
|
|
|
keyboard_keymap.h
|
2012-02-19 07:54:44 +04:00
|
|
|
keyboard_x11.c
|
|
|
|
keyboard_x11.h)
|
|
|
|
|
2012-03-24 04:57:09 +04:00
|
|
|
set(FREERDP_LOCALE_XKBFILE_SRCS
|
|
|
|
keyboard_xkbfile.c
|
|
|
|
keyboard_xkbfile.h)
|
2011-07-01 04:31:07 +04:00
|
|
|
|
2012-02-19 07:54:44 +04:00
|
|
|
set(FREERDP_LOCALE_SUN_SRCS
|
|
|
|
keyboard_sun.c
|
|
|
|
keyboard_sun.h)
|
|
|
|
|
2012-02-19 21:54:27 +04:00
|
|
|
if(CMAKE_SYSTEM_NAME MATCHES Solaris)
|
|
|
|
set(WITH_SUN true)
|
|
|
|
endif()
|
2012-02-19 07:54:44 +04:00
|
|
|
|
|
|
|
set(FREERDP_LOCALE_LINK_LIBRARIES freerdp-utils)
|
|
|
|
|
2012-02-19 07:04:28 +04:00
|
|
|
if(NOT WIN32)
|
|
|
|
find_suggested_package(X11)
|
2012-02-19 07:54:44 +04:00
|
|
|
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})
|
2012-03-24 04:57:09 +04:00
|
|
|
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})
|
2012-02-19 07:54:44 +04:00
|
|
|
endif()
|
2012-02-19 07:04:28 +04:00
|
|
|
endif()
|
2011-10-24 21:43:45 +04:00
|
|
|
endif()
|
|
|
|
|
2012-02-19 07:04:28 +04:00
|
|
|
add_library(freerdp-locale ${FREERDP_LOCALE_SRCS})
|
|
|
|
|
2012-02-18 02:43:00 +04:00
|
|
|
set_target_properties(freerdp-locale PROPERTIES VERSION ${FREERDP_VERSION_FULL} SOVERSION ${FREERDP_VERSION} PREFIX "lib")
|
2011-07-01 04:31:07 +04:00
|
|
|
|
2012-02-19 07:54:44 +04:00
|
|
|
target_link_libraries(freerdp-locale ${FREERDP_LOCALE_LINK_LIBRARIES})
|
2012-02-18 02:43:00 +04:00
|
|
|
|
|
|
|
install(TARGETS freerdp-locale DESTINATION ${CMAKE_INSTALL_LIBDIR})
|