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