]> git.sesse.net Git - vlc/blob - extras/buildsystem/cmake/include/config.cmake
b53b7caf01c6443d18e2bd1fbbd1b3f54acc0db8
[vlc] / extras / buildsystem / cmake / include / config.cmake
1 include( CheckIncludeFile )
2 include (CheckTypeSize)
3 include (CheckCSourceCompiles)
4 include (CheckSymbolExists)
5 include (CheckLibraryExists)
6 include (FindThreads)
7
8 include( ${CMAKE_SOURCE_DIR}/cmake/vlc_check_include_files.cmake )
9 include( ${CMAKE_SOURCE_DIR}/cmake/vlc_check_functions_exist.cmake )
10 include( ${CMAKE_SOURCE_DIR}/cmake/vlc_add_compile_flag.cmake )
11 include( ${CMAKE_SOURCE_DIR}/cmake/vlc_check_type.cmake )
12 include( ${CMAKE_SOURCE_DIR}/cmake/pkg_check_modules.cmake )
13
14 ###########################################################
15 # Headers checks
16 ###########################################################
17
18 vlc_check_include_files (malloc.h stdbool.h locale.h)
19 vlc_check_include_files (stddef.h stdlib.h sys/stat.h)
20 vlc_check_include_files (stdio.h stdint.h inttypes.h)
21 vlc_check_include_files (signal.h unistd.h dirent.h)
22 vlc_check_include_files (netinet/in.h netinet/udplite.h)
23 vlc_check_include_files (arpa/inet.h net/if.h)
24 vlc_check_include_files (netdb.h fcntl.h sys/time.h poll.h)
25 vlc_check_include_files (errno.h time.h)
26
27 vlc_check_include_files (dlfcn.h dl.h)
28
29 vlc_check_include_files (kernel/OS.h)
30 vlc_check_include_files (mach-o/dyld.h)
31
32
33 ###########################################################
34 # Functions/structures checks
35 ###########################################################
36
37 set(CMAKE_EXTRA_INCLUDE_FILES string.h)
38 vlc_check_functions_exist(strcpy strcasecmp)
39 vlc_check_functions_exist(strcasestr strdup)
40 vlc_check_functions_exist(strndup stricmp strnicmp)
41 vlc_check_functions_exist(atof strtoll atoll lldiv)
42 vlc_check_functions_exist(strlcpy)
43 set(CMAKE_EXTRA_INCLUDE_FILES)
44
45 set(CMAKE_EXTRA_INCLUDE_FILES stdio.h)
46 vlc_check_functions_exist(vasprintf)
47 set(CMAKE_EXTRA_INCLUDE_FILES)
48
49 set(CMAKE_EXTRA_INCLUDE_FILES libc.h)
50 vlc_check_functions_exist(fork)
51 set(CMAKE_EXTRA_INCLUDE_FILES)
52
53 check_c_source_compiles(
54 "#include <langinfo.h>
55 int main() { char* cs = nl_langinfo(CODESET); }"
56 HAVE_LANGINFO_CODESET)
57
58 vlc_check_type("struct addrinfo" "sys/socket.h;netdb.h")
59 if(HAVE_STRUCT_ADDRINFO)
60   set(HAVE_ADDRINFO ON)
61 endif(HAVE_STRUCT_ADDRINFO)
62 vlc_check_type("struct timespec" "time.h")
63
64 check_c_source_compiles (
65 "#include <stdint.h> \n #ifdef UINTMAX \n #error no uintmax
66  #endif
67  int main() { return 0;}" HAVE_STDINT_H_WITH_UINTMAX)
68
69 check_symbol_exists(ntohl "sys/param.h" NTOHL_IN_SYS_PARAM_H)
70 check_symbol_exists(scandir "dirent.h" HAVE_SCANDIR)
71 check_symbol_exists(scandir "dirent.h" HAVE_SCANDIR)
72 check_symbol_exists(localtime_r "time.h" HAVE_LOCALTIME_R)
73
74 check_symbol_exists(getnameinfo "sys/types.h;sys/socket.h;netdb.h" HAVE_GETNAMEINFO)
75 check_symbol_exists(getaddrinfo "sys/types.h;sys/socket.h;netdb.h" HAVE_GETADDRINFO)
76 if(NOT HAVE_GETADDRINFO)
77     check_library_exists(getaddrinfo nsl "" HAVE_GETADDRINFO)
78 endif(NOT HAVE_GETADDRINFO)
79
80 set(LIBICONV "")
81 vlc_check_functions_exist(iconv)
82
83 if(NOT HAVE_ICONV)
84     set(LIBICONV "iconv")
85     check_library_exists(iconv iconv "" HAVE_ICONV)
86 endif(NOT HAVE_ICONV)
87 # FIXME: this will break on *BSD:
88 set( ICONV_CONST "" )
89
90 check_library_exists(rt clock_nanosleep "" HAVE_CLOCK_NANOSLEEP)
91 if (HAVE_CLOCK_NANOSLEEP)
92     set(LIBRT "rt")
93 endif (HAVE_CLOCK_NANOSLEEP)
94
95 check_library_exists(m pow "" HAVE_LIBM)
96 if (HAVE_LIBM)
97     set (LIBM "m")
98 endif (HAVE_LIBM)
99
100 ###########################################################
101 # Other check
102 ###########################################################
103 include( ${CMAKE_SOURCE_DIR}/cmake/vlc_test_inline.cmake )
104
105 ###########################################################
106 # Platform check
107 ###########################################################
108 if(APPLE)
109     include( ${CMAKE_SOURCE_DIR}/cmake/vlc_find_frameworks.cmake )
110
111     set(CMAKE_SHARED_MODULE_CREATE_CXX_FLAGS
112             "${CMAKE_SHARED_MODULE_CREATE_CXX_FLAGS} -undefined dynamic_lookup")
113         set(CMAKE_SHARED_MODULE_CREATE_C_FLAGS
114             "${CMAKE_SHARED_MODULE_CREATE_C_FLAGS} -undefined dynamic_lookup")
115
116     set(SYS_DARWIN 1)
117
118     vlc_enable_modules(macosx minimal_macosx access_eyetv quartztext)
119
120     vlc_find_frameworks(Cocoa Carbon OpenGL AGL IOKit Quicktime
121                         WebKit QuartzCore Foundation ApplicationServices)
122     vlc_module_add_link_libraries(macosx
123         ${Cocoa_FRAMEWORKS}
124         ${IOKit_FRAMEWORKS}
125         ${OpenGL_FRAMEWORKS}
126         ${AGL_FRAMEWORKS}
127         ${Quicktime_FRAMEWORKS}
128         ${WebKit_FRAMEWORKS})
129     vlc_module_add_link_libraries(minimal_macosx
130         ${Cocoa_FRAMEWORKS}
131         ${Carbon_FRAMEWORKS}
132         ${OpenGL_FRAMEWORKS}
133         ${AGL_FRAMEWORKS})
134     vlc_module_add_link_libraries(access_eyetv
135         ${Foundation_FRAMEWORKS})
136     vlc_module_add_link_libraries(opengllayer
137          ${Cocoa_FRAMEWORKS}
138          ${QuartzCore_FRAMEWORKS}
139          ${OpenGL_FRAMEWORKS} )
140     vlc_module_add_link_libraries(quartztext
141          ${Carbon_FRAMEWORKS}
142          ${ApplicationServices_FRAMEWORKS} )
143     vlc_module_add_link_libraries(mp4
144          ${IOKit_FRAMEWORKS} )
145
146     add_executable(VLC MACOSX_BUNDLE src/vlc.c)
147     target_link_libraries(VLC libvlc)
148     add_custom_command(
149         OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/VLC.app/Contents/MacOS/modules
150         COMMAND ln -s ${CMAKE_CURRENT_BINARY_DIR}/modules ${CMAKE_CURRENT_BINARY_DIR}/VLC.app/Contents/MacOS/lib
151     )
152     add_custom_command(
153         OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/VLC.app/Contents/MacOS/lib
154         COMMAND ln -s ${CMAKE_CURRENT_BINARY_DIR}/modules ${CMAKE_CURRENT_BINARY_DIR}/VLC.app/Contents/MacOS/lib
155     )
156
157 endif(APPLE)
158
159 ###########################################################
160 # version and info setup
161 ###########################################################
162
163 macro(command_to_configvar command var)
164  execute_process(
165   COMMAND sh -c "${command}"
166   OUTPUT_VARIABLE ${var}
167   OUTPUT_STRIP_TRAILING_WHITESPACE)
168  string( REPLACE "\n" "\\n" ${var} ${${var}})
169 endmacro(command_to_configvar)
170
171 command_to_configvar( "whoami" VLC_COMPILE_BY )
172 command_to_configvar( "hostname" VLC_COMPILE_HOST )
173 command_to_configvar( "hostname" VLC_COMPILE_DOMAIN )
174 command_to_configvar( "${CMAKE_C_COMPILER} --version" VLC_COMPILER )
175 # FIXME: WTF? this is not the configure line!
176 command_to_configvar( "${CMAKE_C_COMPILER} --version" CONFIGURE_LINE )
177 set( VLC_COMPILER "${CMAKE_C_COMPILER}" )
178
179 set(PACKAGE "vlc")
180 set(PACKAGE_STRING "vlc")
181 set(VERSION_MESSAGE "vlc-0.9.0-svn")
182 set(COPYRIGHT_MESSAGE "Copyright VLC Team")
183 set(COPYRIGHT_YEARS "2001-2007")
184
185 ###########################################################
186 # Options
187 ###########################################################
188
189 OPTION( ENABLE_HTTPD           "Enable httpd server" ON )
190 OPTION( ENABLE_VLM             "Enable vlm" ON )
191 OPTION( ENABLE_DYNAMIC_PLUGINS "Enable dynamic plugin" ON )
192
193 set( HAVE_DYNAMIC_PLUGINS ${ENABLE_DYNAMIC_PLUGINS})
194 set( LIBEXT ${CMAKE_SHARED_MODULE_SUFFIX})
195
196 ###########################################################
197 # Modules: Following are all listed in options
198 ###########################################################
199
200 # This module will be enabled but user could disabled it
201 vlc_enable_modules(dummy logger memcpy)
202 vlc_enable_modules(mpgv mpga m4v m4a h264 vc1 demux_cdg cdg ps pva avi mp4 rawdv rawvid nsv real aiff mjpeg demuxdump flacsys tta)
203 vlc_enable_modules(cvdsub svcdsub spudec subsdec subsusf t140 dvbsub cc mpeg_audio lpcm a52 dts cinepak flac)
204 vlc_enable_modules(deinterlace invert adjust transform wave ripple psychedelic gradient motionblur rv32 rotate noise grain extract sharpen seamcarving)
205 vlc_enable_modules(converter_fixed mono)
206 vlc_enable_modules(trivial_resampler ugly_resampler)
207 vlc_enable_modules(trivial_channel_mixer trivial_mixer)
208 vlc_enable_modules(playlist export nsc xtag)
209 vlc_enable_modules(i420_rgb grey_yuv rawvideo blend scale image logo magnify puzzle colorthres)
210 vlc_enable_modules(wav araw subtitle vobsub adpcm a52sys dtssys au ty voc xa nuv smf)
211 vlc_enable_modules(access_directory access_file access_udp access_tcp)
212 vlc_enable_modules(access_http access_mms access_ftp)
213 vlc_enable_modules(access_filter_bandwidth)
214 vlc_enable_modules(packetizer_mpegvideo packetizer_h264)
215 vlc_enable_modules(packetizer_mpeg4video packetizer_mpeg4audio)
216 vlc_enable_modules(packetizer_vc1)
217 vlc_enable_modules(spatializer)
218
219 if(NOT mingwce)
220    set(enabled ON)
221 endif(NOT mingwce)
222 vlc_register_modules(${enabled} access_fake access_filter_timeshift access_filter_record access_filter_dump)
223 vlc_register_modules(${enabled} gestures rc telnet hotkeys showintf marq podcast shout sap fake folder)
224 vlc_register_modules(${enabled} rss mosaic wall motiondetect clone crop erase bluescreen alphamask gaussianblur)
225 vlc_register_modules(${enabled} i420_yuy2 i422_yuy2 i420_ymga i422_i420 yuy2_i422 yuy2_i420 chroma_chain)
226 vlc_register_modules(${enabled} aout_file linear_resampler bandlimited_resampler)
227 vlc_register_modules(${enabled} float32_mixer spdif_mixer simple_channel_mixer)
228 vlc_register_modules(${enabled} dolby_surround_decoder headphone_channel_mixer normvol equalizer param_eq)
229 vlc_register_modules(${enabled} converter_float a52tospdif dtstospdif audio_format)
230 set(enabled)
231
232 if(NOT WIN32)
233    vlc_enable_modules(screensaver)
234 endif(NOT WIN32)
235
236 # Following modules will be disabled but listed in options
237
238 vlc_disable_modules(asf)
239
240 # This module is disabled because the CMakeList.txt which
241 # is generated isn't correct. We'll put that back
242 # when cmake will be accepted as default build system
243 vlc_disable_modules(motion)
244
245 ###########################################################
246 # libraries
247 ###########################################################
248
249 pkg_check_modules(LIBCDDB libcddb>=0.9.5)
250 if(${LIBCDDB_FOUND})
251   vlc_module_add_link_libraries(cdda ${LIBCDDB_LIBRARIES})
252   vlc_add_module_compile_flag(cdda ${LIBCDDB_CFLAGS} )
253 endif(${LIBCDDB_FOUND})
254
255 include (FindDlopen)
256 set(HAVE_DL_DLOPEN ${Dlopen_FOUND})
257
258 ###########################################################
259 # Final configuration
260 ###########################################################
261 configure_file(${CMAKE_CURRENT_SOURCE_DIR}/include/config.h.cmake ${CMAKE_CURRENT_BINARY_DIR}/include/config.h)
262