Skip to content

Commit

Permalink
meson: update the list of sources and dependencies
Browse files Browse the repository at this point in the history
Change-Id: I19bc2fe4edef3c8dc7992473235f6ffd002c6e0b
  • Loading branch information
H5117 authored and aberaud committed Oct 10, 2021
1 parent d987d63 commit 17f31b5
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
3 changes: 2 additions & 1 deletion meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ depthreads = dependency('threads')
depopendht = dependency('opendht', version: '>= 2.1.0')
depgnutls = dependency('gnutls', version: '>= 3.6.7')
deplibpjproject = dependency('libpjproject')
deplibgit2 = dependency('libgit2', version: '>= 1.1.0')
deplibsecp256k1 = dependency('libsecp256k1', version: '>= 0.1')
deplibavcodec = dependency('libavcodec', version: '>= 56.60.100')
deplibavfilter = dependency('libavfilter', version: '>= 5.40.101')
Expand All @@ -23,8 +24,8 @@ deplibavformat = dependency('libavformat', version: '>= 56.40.101')
deplibswscale = dependency('libswscale', version: '>= 3.1.101')
deplibswresample = dependency('libswresample', version: '>= 1.2.101')
deplibavutil = dependency('libavutil', version: '>= 55.75.100')
depspeex = dependency('speex')
depspeexdsp = dependency('speexdsp')
depfmt = dependency('fmt', version: '>= 5.3')

depyamlcpp = dependency('yaml-cpp', version: '>= 0.5.1', required: false)
if not depyamlcpp.found()
Expand Down
9 changes: 8 additions & 1 deletion src/meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ libjami_includedirs = include_directories(
libjami_sources = files(
'client/callmanager.cpp',
'client/configurationmanager.cpp',
'client/conversation_interface.cpp',
'client/datatransfer.cpp',
'client/presencemanager.cpp',
'client/ring_signal.cpp',
Expand All @@ -26,6 +27,9 @@ libjami_sources = files(
'jamidht/channeled_transport.cpp',
'jamidht/connectionmanager.cpp',
'jamidht/contact_list.cpp',
'jamidht/conversation.cpp',
'jamidht/conversationrepository.cpp',
'jamidht/gitserver.cpp',
'jamidht/jamiaccount.cpp',
'jamidht/multiplexed_socket.cpp',
'jamidht/namedirectory.cpp',
Expand Down Expand Up @@ -55,6 +59,7 @@ libjami_sources = files(
'media/libav_utils.cpp',
'media/localrecorder.cpp',
'media/localrecordermanager.cpp',
'media/media_attribute.cpp',
'media/media_buffer.cpp',
'media/media_codec.cpp',
'media/media_decoder.cpp',
Expand Down Expand Up @@ -98,6 +103,7 @@ libjami_sources = files(
'data_transfer.cpp',
'fileutils.cpp',
'ftp_server.cpp',
'gittransport.cpp',
'ice_transport.cpp',
'ip_utils.cpp',
'logger.cpp',
Expand All @@ -120,6 +126,7 @@ libjami_dependencies = [
depopendht,
depgnutls,
deplibpjproject,
deplibgit2,
deplibsecp256k1,
deplibavcodec,
deplibavfilter,
Expand All @@ -128,8 +135,8 @@ libjami_dependencies = [
deplibswscale,
deplibswresample,
deplibavutil,
depspeex,
depspeexdsp,
depfmt,
depyamlcpp,
depjsoncpp,
depzlib
Expand Down

0 comments on commit 17f31b5

Please sign in to comment.