]> git.sesse.net Git - vlc/blob - extras/buildsystem/cmake/CMakeLists/src_CMakeLists.txt
802b90bf25d42e6ea640868cbced7f3c0b7eae2e
[vlc] / extras / buildsystem / cmake / CMakeLists / src_CMakeLists.txt
1
2 add_definitions(-Dasm=__asm__ -D_INTL_REDIRECT_MACROS)
3 add_definitions(-DLOCALEDIR=\\"${CMAKE_INSTALL_PREFIX}/locale\\")
4 add_definitions(-DPLUGIN_PATH=\\"${CMAKE_INSTALL_PREFIX}/lib/vlc\\")
5 add_definitions(-DDATA_PATH=\\"${CMAKE_INSTALL_PREFIX}/share/vlc\\")
6
7 # vlc
8 add_executable(vlc vlc.c)
9 target_link_libraries(vlc libvlc)
10
11 # libvlc
12
13 set( SOURCES_libvlc_beos misc/beos_specific.cpp )
14 set( SOURCES_libvlc_darwin misc/darwin_specific.c )
15 set( SOURCES_libvlc_win32 misc/win32_specific.c )
16 set( SOURCES_libvlc_dirent extras/dirent.c )
17 set( SOURCES_libvlc_getopt misc/getopt.c misc/getopt.h misc/getopt1.c )
18 set( SOURCES_libvlc_common
19     libvlc.c
20     libvlc-common.c
21     libvlc.h
22     libvlc-module.c
23     interface/interface.h
24     interface/interface.c
25     interface/intf_eject.c
26     interface/interaction.c
27     playlist/playlist_internal.h
28     playlist/thread.c
29     playlist/control.c
30     playlist/engine.c
31     playlist/sort.c
32     playlist/loadsave.c
33     playlist/tree.c
34     playlist/item.c
35     playlist/search.c
36     playlist/services_discovery.c
37     input/item.c
38     input/access.c
39     input/clock.c
40     input/control.c
41     input/decoder.c
42     input/decoder_synchro.c
43     input/demux.c
44     input/es_out.c
45     input/input.c
46     input/meta.c
47     input/input_internal.h
48     input/vlm_internal.h
49     input/stream.c
50     input/mem_stream.c
51     input/subtitles.c
52     input/var.c
53     video_output/video_output.c
54     video_output/vout_pictures.c
55     video_output/vout_pictures.h
56     video_output/video_text.c
57     video_output/video_widgets.c
58     video_output/vout_subpictures.c
59     video_output/vout_intf.c
60     audio_output/aout_internal.h
61     audio_output/common.c
62     audio_output/dec.c
63     audio_output/filters.c
64     audio_output/input.c
65     audio_output/mixer.c
66     audio_output/output.c
67     audio_output/intf.c
68     stream_output/stream_output.c
69     stream_output/stream_output.h
70     stream_output/announce.c
71     stream_output/profiles.c
72     stream_output/sap.c
73     stream_output/sdp.c
74     osd/osd.c
75     osd/osd_text.c
76     osd/osd_widgets.c
77     network/acl.c
78     network/getaddrinfo.c
79     network/io.c
80     network/error.c
81     network/tcp.c
82     network/udp.c
83     network/httpd.c
84     network/rootwrap.c
85     network/tls.c
86     network/poll.c
87     text/charset.c
88     text/strings.c
89     text/unicode.c
90     text/wincp.c
91     text/iso_lang.c
92     text/iso-639_def.h
93     misc/md5.c
94     misc/rand.c
95     misc/mtime.c
96     misc/block.c
97     ${CMAKE_BINARY_DIR}/src/modules/builtin.h
98     modules/modules.h
99     modules/modules.c
100     modules/cache.c
101     modules/entry.c
102     modules/os.c
103     misc/threads.c
104     misc/stats.c
105     misc/cpu.c
106     config/configuration.h
107     config/core.c
108     config/chain.c
109     config/file.c
110     config/cmdline.c
111     misc/events.c
112     misc/image.c
113     misc/messages.c
114     misc/objects.c
115     misc/variables.h
116     misc/variables.c
117     misc/error.c
118     misc/update.c
119     ${CMAKE_BINARY_DIR}/src/misc/revision.c
120     input/vlm.c
121     misc/xml.c
122     misc/devices.c
123     extras/libc.c
124     ${CMAKE_BINARY_DIR}/include/vlc_about.h )
125
126 set( SOURCES_libvlc ${SOURCES_libvlc_common} )
127
128 if(SYS_DARWIN)
129     set( SOURCES_libvlc ${SOURCES_libvlc} ${SOURCES_libvlc_darwin} )
130 endif(SYS_DARWIN)
131
132 add_library(libvlc SHARED ${SOURCES_libvlc})
133
134 set_target_properties(libvlc PROPERTIES
135         OUTPUT_NAME vlc
136         SOVERSION 1 VERSION 1.0.0)
137
138 target_link_libraries(libvlc ${LIBM} ${LIBRT} ${LIBICONV} ${Dlopen_LIBRARIES})
139
140
141 # libvlc-control
142 set( SOURCES_libvlc_control
143      control/libvlc_internal.h
144      control/core.c
145      control/log.c
146      control/playlist.c
147      control/vlm.c
148      control/video.c
149      control/audio.c
150      control/dynamic_media_list.c
151      control/event.c
152      control/flat_media_list_view.c
153      control/hierarchical_media_list_view.c
154      control/hierarchical_node_media_list_view.c
155      control/media_descriptor.c
156      control/media_instance.c
157      control/media_list.c
158      control/media_list_path.h
159      control/media_list_player.c
160      control/media_list_view.c
161      control/media_library.c
162      control/mediacontrol_internal.h
163      control/mediacontrol_core.c
164      control/mediacontrol_util.c
165      control/mediacontrol_audio_video.c
166      control/media_discoverer.c
167      control/tag_query.c )
168
169 add_library(libvlc-control SHARED ${SOURCES_libvlc_control})
170
171 set_target_properties(libvlc-control PROPERTIES OUTPUT_NAME vlc-control)
172 set_target_properties(libvlc-control PROPERTIES SOVERSION 0)
173 set_target_properties(libvlc PROPERTIES VERSION 0.0.0)
174
175 target_link_libraries(libvlc-control libvlc)
176
177 ##########################################################
178 # Install
179
180 install(TARGETS libvlc libvlc-control DESTINATION lib)
181 install(TARGETS vlc DESTINATION bin)
182
183 ##########################################################
184 # Libraries
185
186 # Carbon
187 if(APPLE)
188   find_library(CARBON_FRAMEWORK Carbon)
189   target_link_libraries(libvlc ${CARBON_FRAMEWORK})
190 endif(APPLE)
191
192 ##########################################################
193 # revision.c
194
195 set(rev "${CMAKE_BINARY_DIR}/src/misc/revision.c")
196 exec_program(dirname ARGS ${rev} OUTPUT_VARIABLE rev_dir)
197
198 add_custom_command(
199 OUTPUT ${rev}
200 COMMAND    rm -f ${rev} ${rev}.tmp
201 COMMAND    mkdir -p ${rev_dir}
202 COMMAND    sh -c "echo '/* AUTOGENERATED FILE - DO NOT EDIT */' > ${rev}.tmp"
203 COMMAND    sh -c "printf 'const char psz_vlc_changeset[] = \"' >> ${rev}.tmp"
204 COMMAND    sh -c "printf `LANG=C svnversion ${CMAKE_SOURCE_DIR} || printf \"exported\"` >> ${rev}.tmp"
205 COMMAND    sh -c "echo '\";' >> ${rev}.tmp"
206 COMMAND    mv -f ${rev}.tmp ${rev}
207 VERBATIM
208 )
209 set(rev)
210
211 ##########################################################
212 # builtin.h
213 # No real use for this one, we just used to need it.
214 # We should really remove that.
215 set(builtin "${CMAKE_BINARY_DIR}/src/modules/builtin.h")
216 exec_program(dirname ARGS ${builtin} OUTPUT_VARIABLE builtin_dir)
217
218 add_custom_command(
219 OUTPUT ${builtin}
220 COMMAND    mkdir -p ${builtin_dir}
221 COMMAND    sh -c "echo '/* Auto generated by ${CMAKE_CURRENT_BUILD_DIR}/CMakeLists.txt */' > ${builtin}"
222 COMMAND    sh -c "echo 'int vlc_entry__main( module_t* );' >> ${builtin}"
223 COMMAND    sh -c "echo '#define ALLOCATE_ALL_BUILTINS() do {} while(0)' >> ${builtin}"
224 VERBATIM
225 )
226 set(should)
227
228 ##########################################################
229 # vlc_about.h
230 set(about "${CMAKE_BINARY_DIR}/include/vlc_about.h")
231 exec_program(dirname ARGS ${about} OUTPUT_VARIABLE about_dir)
232
233 add_custom_command(
234 OUTPUT ${about}
235 COMMAND rm -f "${about}.tmp"
236 COMMAND mkdir -p ${about_dir}
237 COMMAND sh -c "echo '/* Automatically generated file - DO NOT EDIT */' > ${about}.tmp"
238 COMMAND sh -c "echo 'static const char psz_license[] =' >> ${about}.tmp"
239 COMMAND sh -c "cat ${CMAKE_SOURCE_DIR}/COPYING | sed s/\\\"/''/g | awk '{ print \"\\\"\"$0\"\\\\n\\\"\" }' >> ${about}.tmp"
240 COMMAND sh -c "echo ';' >> ${about}.tmp"
241 COMMAND sh -c "echo 'static const char psz_thanks[] =' >> ${about}.tmp"
242 COMMAND sh -c "grep -v '$$Id:'  ${CMAKE_SOURCE_DIR}/THANKS | sed 's/\"/''/g' | awk '{ print  \"\\\"\"$0\"\\\\n\\\"\" }'|sed 's/\"<.*.> \"//' >> ${about}.tmp"
243 COMMAND sh -c "echo ';' >> ${about}.tmp"
244 COMMAND sh -c "echo 'static const char psz_authors[] =' >> ${about}.tmp"
245 COMMAND sh -c "grep N: ${CMAKE_SOURCE_DIR}/AUTHORS | cut -d '\ ' -f 2- | sed 's/\"/''/g' | awk '{ print  \"\\\"\"$0\"\\\\n\\\"\" }' >> ${about}.tmp"
246 COMMAND sh -c "echo ';' >> ${about}.tmp"
247 COMMAND sh -c "mv -f -- ${about}.tmp ${about}"
248 DEPENDS ${CMAKE_SOURCE_DIR}/AUTHORS ${CMAKE_SOURCE_DIR}/THANKS ${CMAKE_SOURCE_DIR}/COPYING
249 VERBATIM
250 )
251 set(about)
252
253
254 ##########################################################
255 # SET_TARGET_PROPERTIES
256
257 # FIXME: Should probably be autodetected in configure?
258 if(NOT APPLE)
259    set(LINK_FLAGS "-z defs --as-needed")
260 endif(NOT APPLE)
261
262 target_link_libraries(libvlc "${CMAKE_THREAD_LIBS_INIT}")
263 target_link_libraries(libvlc-control "${CMAKE_THREAD_LIBS_INIT}")
264
265 set_target_properties(libvlc libvlc-control vlc PROPERTIES COMPILE_FLAGS
266     "-Wall -Wextra -Wsign-compare -Wundef -Wpointer-arith -Wbad-function-cast -Wcast-align -Wwrite-strings -Wmissing-prototypes -I${CMAKE_BINARY_DIR}/src -I${CMAKE_BINARY_DIR}/include" )
267
268 ##########################################################
269 # Tests
270
271 add_executable(testapi    control/testapi.c)
272 add_executable(i18n_atof  test/i18n_atof.c)
273 add_executable(url        test/url.c)
274 add_executable(utf8       test/utf8.c)
275 add_executable(dictionary test/dictionary.c)
276
277 target_link_libraries(testapi    libvlc-control)
278 target_link_libraries(i18n_atof  libvlc)
279 target_link_libraries(url        libvlc)
280 target_link_libraries(utf8       libvlc)
281 target_link_libraries(dictionary libvlc)
282
283 add_test(testapi    ${EXECUTABLE_OUTPUT_PATH}/testapi)
284 add_test(i18n_atof  ${EXECUTABLE_OUTPUT_PATH}/i18n_atof)
285 add_test(url        ${EXECUTABLE_OUTPUT_PATH}/url)
286 add_test(utf8       ${EXECUTABLE_OUTPUT_PATH}/utf8)
287 add_test(dictionary ${EXECUTABLE_OUTPUT_PATH}/dictionary)
288