neatvnc/meson.build

126 lines
2.2 KiB
Meson
Raw Normal View History

2019-10-12 13:19:49 +00:00
project(
'neatvnc',
'c',
2020-02-21 23:04:19 +00:00
version: '0.1.0',
2019-10-12 13:19:49 +00:00
license: 'ISC',
default_options: [
'c_std=gnu11',
],
)
buildtype = get_option('buildtype')
2020-04-01 22:49:58 +00:00
host_system = host_machine.system()
c_args = [
2019-10-12 13:19:49 +00:00
'-D_GNU_SOURCE',
'-fvisibility=hidden',
'-Wmissing-prototypes',
]
if buildtype != 'debug' and buildtype != 'debugoptimized'
c_args += '-DNDEBUG'
endif
2019-10-12 13:19:49 +00:00
2019-10-13 12:16:24 +00:00
cpu = host_machine.cpu_family()
if cpu == 'x86_64'
c_args += '-m' + get_option('x86_64-simd')
elif cpu == 'arm'
c_args += '-mfpu=neon'
2019-10-13 12:16:24 +00:00
endif
add_project_arguments(c_args, language: 'c')
2019-10-13 12:16:24 +00:00
2019-10-12 13:19:49 +00:00
cc = meson.get_compiler('c')
libm = cc.find_library('m', required: false)
pixman = dependency('pixman-1')
2019-12-31 10:13:21 +00:00
libturbojpeg = dependency('libturbojpeg', required: get_option('tight-encoding'))
gnutls = dependency('gnutls', required: get_option('tls'))
zlib = dependency('zlib')
2019-10-12 13:19:49 +00:00
2020-03-16 20:09:22 +00:00
aml_project = subproject('aml', required: false)
if aml_project.found()
aml = aml_project.get_variable('aml_dep')
else
aml = dependency('aml')
endif
inc = include_directories('include')
2019-10-12 13:19:49 +00:00
sources = [
'src/server.c',
'src/vec.c',
'src/zrle.c',
'src/raw-encoding.c',
'src/pixels.c',
'src/damage.c',
'src/fb.c',
2020-01-25 15:29:25 +00:00
'src/rcbuf.c',
'src/stream.c',
'src/display.c',
2019-10-12 13:19:49 +00:00
]
dependencies = [
libm,
pixman,
2020-03-16 20:09:22 +00:00
aml,
zlib,
2019-10-12 13:19:49 +00:00
]
2019-12-31 10:13:21 +00:00
config = configuration_data()
if libturbojpeg.found()
dependencies += libturbojpeg
2020-07-08 18:21:25 +00:00
sources += 'src/tight-encoder-v2.c'
2019-12-31 10:13:21 +00:00
config.set('ENABLE_TIGHT', true)
endif
if gnutls.found()
dependencies += gnutls
config.set('ENABLE_TLS', true)
endif
2020-04-01 22:49:58 +00:00
if host_system == 'linux' and cc.has_header('sys/sdt.h')
config.set('HAVE_USDT', true)
endif
2019-12-31 10:13:21 +00:00
configure_file(
output: 'config.h',
configuration: config,
)
neatvnc = shared_library(
2019-10-12 13:19:49 +00:00
'neatvnc',
sources,
2019-10-12 14:47:07 +00:00
version: '0.0.0',
2019-10-12 13:19:49 +00:00
dependencies: dependencies,
include_directories: inc,
install: true,
)
neatvnc_dep = declare_dependency(
include_directories: inc,
link_with: neatvnc,
)
2020-02-09 11:41:43 +00:00
if get_option('examples')
subdir('examples')
endif
2020-05-27 21:59:34 +00:00
if get_option('benchmarks')
subdir('bench')
endif
2019-10-12 13:19:49 +00:00
install_headers('include/neatvnc.h')
2019-10-12 14:47:07 +00:00
pkgconfig = import('pkgconfig')
pkgconfig.generate(
libraries: neatvnc,
2019-10-12 14:47:07 +00:00
version: meson.project_version(),
filebase: meson.project_name(),
name: meson.project_name(),
description: 'A Neat VNC server library'
)