2011-07-02 21:58:55 +04:00
|
|
|
# FreeRDP: A Remote Desktop Protocol Client
|
|
|
|
# FreeRDP cmake build script
|
|
|
|
#
|
|
|
|
# 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
|
|
|
cmake_minimum_required(VERSION 2.8)
|
|
|
|
project(FreeRDP C)
|
|
|
|
set(CMAKE_COLOR_MAKEFILE ON)
|
|
|
|
|
2011-07-04 07:40:26 +04:00
|
|
|
# Include cmake modules
|
|
|
|
include(CheckIncludeFiles)
|
|
|
|
include(CheckLibraryExists)
|
|
|
|
include(TestBigEndian)
|
|
|
|
|
2011-07-01 04:31:07 +04:00
|
|
|
# Include our extra modules
|
|
|
|
set(CMAKE_MODULE_PATH ${CMAKE_SOURCE_DIR}/cmake/)
|
|
|
|
|
2011-07-02 23:44:40 +04:00
|
|
|
include(AutoVersioning)
|
|
|
|
|
2011-07-01 04:31:07 +04:00
|
|
|
# Soname versioning - 0.0.0 since it is not being managed yet
|
|
|
|
set(FREERDP_VERSION_MAJOR "0")
|
|
|
|
set(FREERDP_VERSION_MINOR "0")
|
|
|
|
set(FREERDP_VERSION_PATCH "0")
|
|
|
|
set(FREERDP_VERSION "${FREERDP_VERSION_MAJOR}.${FREERDP_VERSION_MINOR}")
|
|
|
|
set(FREERDP_VERSION_FULL "${FREERDP_VERSION}.${FREERDP_VERSION_PATCH}")
|
|
|
|
|
|
|
|
# Default to release build type
|
|
|
|
if(NOT CMAKE_BUILD_TYPE)
|
|
|
|
set(CMAKE_BUILD_TYPE "Release")
|
|
|
|
endif()
|
|
|
|
|
2011-07-04 07:40:26 +04:00
|
|
|
# Include files
|
|
|
|
check_include_files(sys/param.h HAVE_SYS_PARAM_H)
|
|
|
|
check_include_files(sys/socket.h HAVE_SYS_SOCKET_H)
|
|
|
|
check_include_files(netdb.h HAVE_NETDB_H)
|
|
|
|
check_include_files(fcntl.h HAVE_FCNTL_H)
|
|
|
|
|
|
|
|
# Endian
|
|
|
|
test_big_endian(BIG_ENDIAN)
|
|
|
|
|
2011-07-01 04:31:07 +04:00
|
|
|
# Path to put keymaps
|
|
|
|
set(FREERDP_KEYMAP_PATH "${CMAKE_INSTALL_PREFIX}/freerdp/keymaps")
|
|
|
|
|
2011-07-04 11:41:53 +04:00
|
|
|
# Include directories
|
|
|
|
include_directories(${CMAKE_SOURCE_DIR})
|
|
|
|
include_directories(${CMAKE_SOURCE_DIR}/include)
|
|
|
|
|
2011-07-04 07:40:26 +04:00
|
|
|
# Configure files
|
|
|
|
configure_file(${CMAKE_CURRENT_SOURCE_DIR}/config.h.in ${CMAKE_CURRENT_BINARY_DIR}/config.h)
|
|
|
|
|
2011-07-02 22:23:59 +04:00
|
|
|
# Build CUnit
|
|
|
|
find_package(CUnit)
|
|
|
|
if(CUNIT_FOUND)
|
|
|
|
add_subdirectory(cunit)
|
|
|
|
endif()
|
|
|
|
|
2011-07-04 07:40:26 +04:00
|
|
|
# Sub-directories
|
2011-07-01 04:31:07 +04:00
|
|
|
add_subdirectory(include)
|
|
|
|
add_subdirectory(libfreerdp-asn1)
|
|
|
|
add_subdirectory(libfreerdp-utils)
|
|
|
|
add_subdirectory(libfreerdp-kbd)
|
2011-07-01 05:23:36 +04:00
|
|
|
add_subdirectory(libfreerdp-gdi)
|
2011-07-01 04:31:07 +04:00
|
|
|
|
2011-07-02 22:40:03 +04:00
|
|
|
add_subdirectory(libfreerdp-core)
|
2011-07-03 20:42:35 +04:00
|
|
|
|
|
|
|
add_subdirectory(freerdp-ui)
|