68 lines
1.9 KiB
Meson
68 lines
1.9 KiB
Meson
project('restc-cpp', 'cpp',
|
|
version: '0.9.2',
|
|
meson_version: '>=0.49.2',
|
|
default_options: ['cpp_std=gnu++17'],
|
|
)
|
|
|
|
config_template = files('restc-cpp/config.h.template')
|
|
if get_option('restc_cpp_with_zlib')
|
|
zipreaderimpl = files('restc-cpp/src/ZipReaderImpl.cpp')
|
|
endif
|
|
compiler_opts = ['-DBOOST_COROUTINE_NO_DEPRECATION_WARNING=1']
|
|
|
|
thread_dep = dependency('threads')
|
|
boost_dep = dependency('boost',
|
|
modules: [
|
|
'system', 'program_options', 'filesystem', 'date_time',
|
|
'context', 'coroutine', 'chrono', 'log'
|
|
]
|
|
)
|
|
|
|
if not get_option('embedded_restc_cpp')
|
|
if get_option('restc_cpp_with_zlib')
|
|
zlib_dep = dependency('zlib')
|
|
endif
|
|
if get_option('restc_cpp_with_tls')
|
|
tls_dep = dependency('OpenSSL')
|
|
endif
|
|
endif
|
|
|
|
pvt_incdir = include_directories('restc-cpp/src')
|
|
pub_incdir = include_directories('restc-cpp/include', 'include')
|
|
|
|
subdir('include/restc-cpp')
|
|
|
|
restc_cpp_target = library(meson.project_name(),
|
|
'restc-cpp/src/ChunkedReaderImpl.cpp',
|
|
'restc-cpp/src/ChunkedWriterImpl.cpp',
|
|
'restc-cpp/src/IoReaderImpl.cpp',
|
|
'restc-cpp/src/IoWriterImpl.cpp',
|
|
'restc-cpp/src/PlainReaderImpl.cpp',
|
|
'restc-cpp/src/PlainWriterImpl.cpp',
|
|
'restc-cpp/src/NoBodyReaderImpl.cpp',
|
|
'restc-cpp/src/DataReaderStream.cpp',
|
|
'restc-cpp/src/RestClientImpl.cpp',
|
|
'restc-cpp/src/RequestImpl.cpp',
|
|
'restc-cpp/src/ReplyImpl.cpp',
|
|
'restc-cpp/src/ConnectionPoolImpl.cpp',
|
|
'restc-cpp/src/Url.cpp',
|
|
'restc-cpp/src/RequestBodyStringImpl.cpp',
|
|
'restc-cpp/src/RequestBodyFileImpl.cpp',
|
|
'restc-cpp/src/url_encode.cpp',
|
|
zipreaderimpl,
|
|
install: true,
|
|
include_directories: [pvt_incdir, pub_incdir],
|
|
dependencies: [zlib_dep, tls_dep, thread_dep, boost_dep],
|
|
cpp_args: compiler_opts,
|
|
)
|
|
|
|
restc_cpp_dep = declare_dependency(
|
|
link_with: restc_cpp_target,
|
|
include_directories: pub_incdir,
|
|
compile_args: compiler_opts,
|
|
dependencies: [tls_dep, thread_dep, boost_dep],
|
|
)
|
|
|
|
if get_option('restc_cpp_with_unit_tests')
|
|
#subdir('tests')
|
|
endif
|