Replace msgpack with bitsery

This commit is contained in:
Robbert van der Helm
2020-02-26 22:17:05 +01:00
parent 5b07941986
commit cd5b294952
5 changed files with 77 additions and 32 deletions
+2 -3
View File
@@ -22,7 +22,6 @@ endif
boost_dep = dependency('boost', modules : ['filesystem'])
bitsery_dep = subproject('bitsery').get_variable('bitsery_dep')
msgpack_dep = dependency('msgpack')
threads_dep = dependency('threads')
# The built in threads dependency does not know how to handle winegcc
wine_threads_dep = declare_dependency(link_args : '-lpthread')
@@ -37,7 +36,7 @@ shared_library(
],
native : true,
include_directories : include_dir,
dependencies : [boost_dep, bitsery_dep, msgpack_dep, threads_dep],
dependencies : [boost_dep, bitsery_dep, threads_dep],
link_args : ['-ldl']
)
@@ -48,6 +47,6 @@ executable(
],
native : false,
include_directories : include_dir,
dependencies : [boost_dep, bitsery_dep, msgpack_dep, wine_threads_dep],
dependencies : [boost_dep, bitsery_dep, wine_threads_dep],
link_args : []
)