dfreerdp: fix definition of boolean type
[platform/upstream/freerdp.git] / CMakeLists.txt
1 # FreeRDP: A Remote Desktop Protocol Client
2 # FreeRDP cmake build script
3 #
4 # Copyright 2011 O.S. Systems Software Ltda.
5 # Copyright 2011 Otavio Salvador <otavio@ossystems.com.br>
6 # Copyright 2011 Marc-Andre Moreau <marcandre.moreau@gmail.com>
7 #
8 # Licensed under the Apache License, Version 2.0 (the "License");
9 # you may not use this file except in compliance with the License.
10 # You may obtain a copy of the License at
11 #
12 #     http://www.apache.org/licenses/LICENSE-2.0
13 #
14 # Unless required by applicable law or agreed to in writing, software
15 # distributed under the License is distributed on an "AS IS" BASIS,
16 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17 # See the License for the specific language governing permissions and
18 # limitations under the License.
19
20 cmake_minimum_required(VERSION 2.6)
21 project(FreeRDP C)
22 set(CMAKE_COLOR_MAKEFILE ON)
23
24 # Include cmake modules
25 include(CheckIncludeFiles)
26 include(CheckLibraryExists)
27 include(FindPkgConfig)
28 include(TestBigEndian)
29
30 # Include our extra modules
31 set(CMAKE_MODULE_PATH ${CMAKE_SOURCE_DIR}/cmake/)
32
33 include(AutoVersioning)
34 include(ConfigOptions)
35 include(FindOptionalPackage)
36 include(CheckCCompilerFlag)
37
38 # Soname versioning - 0.0.0 since it is not being managed yet
39 set(FREERDP_VERSION_MAJOR "1")
40 set(FREERDP_VERSION_MINOR "0")
41 set(FREERDP_VERSION_PATCH "0")
42 set(FREERDP_VERSION "${FREERDP_VERSION_MAJOR}.${FREERDP_VERSION_MINOR}")
43 set(FREERDP_VERSION_FULL "${FREERDP_VERSION}.${FREERDP_VERSION_PATCH}")
44
45 # Default to release build type
46 if(NOT CMAKE_BUILD_TYPE)
47    set(CMAKE_BUILD_TYPE "Release")
48 endif()
49
50 # Set default libdir
51 if(NOT DEFINED CMAKE_INSTALL_LIBDIR)
52         set(CMAKE_INSTALL_LIBDIR "lib")
53 endif()
54
55 # Set default bindir
56 if(NOT DEFINED CMAKE_INSTALL_BINDIR)
57         set(CMAKE_INSTALL_BINDIR "bin")
58 endif()
59
60 # build shared libs
61 if(NOT BUILD_SHARED_LIBS)
62     set(BUILD_SHARED_LIBS ON)
63 endif()
64
65 # Compiler-specific flags
66 if(CMAKE_COMPILER_IS_GNUCC)
67         set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wall")
68         CHECK_C_COMPILER_FLAG (-Wno-unused-result Wno-unused-result)
69         if(Wno-unused-result)
70                 set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wno-unused-result")
71         endif()
72         CHECK_C_COMPILER_FLAG (-Wno-unused-but-set-variable Wno-unused-but-set-variable)
73         if(Wno-unused-but-set-variable)
74                 set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wno-unused-but-set-variable")
75         endif()
76         if(CMAKE_BUILD_TYPE STREQUAL "Release")
77                 set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -O2")
78         endif()
79         if(WITH_SSE2_TARGET)
80                 set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -msse2")
81         endif()
82 endif()
83
84 if(MSVC)
85         set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} /Gd /MT")
86         set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} /O2 /Ob2")
87         set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -D_X86_")
88         set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -D_UNICODE")
89         set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -DFREERDP_EXPORTS")
90         set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -D_CRT_SECURE_NO_WARNINGS")
91         set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -DWIN32_LEAN_AND_MEAN")
92         SET(EXECUTABLE_OUTPUT_PATH ${PROJECT_BINARY_DIR})
93         SET(LIBRARY_OUTPUT_PATH ${PROJECT_BINARY_DIR})
94 endif()
95
96 # Include files
97 check_include_files(sys/param.h HAVE_SYS_PARAM_H)
98 check_include_files(sys/socket.h HAVE_SYS_SOCKET_H)
99 check_include_files(netdb.h HAVE_NETDB_H)
100 check_include_files(fcntl.h HAVE_FCNTL_H)
101 check_include_files(unistd.h HAVE_UNISTD_H)
102 check_include_files(limits.h HAVE_LIMITS_H)
103 check_include_files(stdint.h HAVE_STDINT_H)
104 check_include_files(stdbool.h HAVE_STDBOOL_H)
105 check_include_files(inttypes.h HAVE_INTTYPES_H)
106
107 # Libraries that we have a hard dependency on
108 find_required_package(OpenSSL)
109
110 # Mac OS X
111 if(APPLE)
112         include_directories(/opt/local/include)
113         link_directories(/opt/local/lib)
114 endif()
115
116 if(NOT WIN32)
117         find_required_package(ZLIB)
118         find_optional_package(PulseAudio)
119         find_optional_package(PCSC)
120         find_suggested_package(Cups)
121         find_suggested_package(FFmpeg)
122
123         if(NOT APPLE)
124                 find_suggested_package(ALSA)
125         endif()
126 endif()
127
128 # Endian
129 test_big_endian(BIG_ENDIAN)
130
131 # Path to put keymaps
132 set(FREERDP_KEYMAP_PATH "${CMAKE_INSTALL_PREFIX}/freerdp/keymaps")
133
134 # Path to put plugins
135 set(FREERDP_PLUGIN_PATH "${CMAKE_INSTALL_PREFIX}/${CMAKE_INSTALL_LIBDIR}/freerdp")
136
137 # Include directories
138 include_directories(${CMAKE_CURRENT_BINARY_DIR})
139 include_directories(${CMAKE_SOURCE_DIR}/include)
140
141 # Configure files
142 configure_file(${CMAKE_CURRENT_SOURCE_DIR}/config.h.in ${CMAKE_CURRENT_BINARY_DIR}/config.h)
143
144 # Generate pkg-config
145 configure_file(${CMAKE_CURRENT_SOURCE_DIR}/freerdp.pc.in ${CMAKE_CURRENT_BINARY_DIR}/freerdp.pc @ONLY)
146 install(FILES ${CMAKE_CURRENT_BINARY_DIR}/freerdp.pc DESTINATION ${CMAKE_INSTALL_LIBDIR}/pkgconfig)
147
148 # Build CUnit
149 find_optional_package(CUnit)
150 if(CUNIT_FOUND)
151    enable_testing()
152    add_subdirectory(cunit)
153 endif()
154
155 # Sub-directories
156 add_subdirectory(include)
157 add_subdirectory(libfreerdp-utils)
158
159 if(NOT WIN32)
160         add_subdirectory(libfreerdp-kbd)
161 endif()
162
163 add_subdirectory(libfreerdp-gdi)
164 add_subdirectory(libfreerdp-rail)
165 add_subdirectory(libfreerdp-cache)
166 add_subdirectory(libfreerdp-codec)
167 add_subdirectory(libfreerdp-channels)
168 add_subdirectory(libfreerdp-core)
169
170 if(NOT WIN32)
171         add_subdirectory(channels)
172 endif()
173
174 add_subdirectory(client)
175 add_subdirectory(server)
176 add_subdirectory(keymaps)
177
178 # Source package
179 set(CPACK_SOURCE_IGNORE_FILES "/\\\\.git/;/\\\\.gitignore;/CMakeCache.txt")
180
181 string(TOLOWER ${CMAKE_PROJECT_NAME} CMAKE_PROJECT_NAME_lower)
182 set(CPACK_SOURCE_PACKAGE_FILE_NAME "${CMAKE_PROJECT_NAME_lower}-${FREERDP_VERSION_FULL}")
183
184 include(CPack)