blob: 679ecad5f95e9201d42a200448dba046b67c1d14 [file] [log] [blame]
project(
'slpd-lite',
'cpp',
version: '0.1',
meson_version: '>=1.1.1',
default_options: [
'warning_level=3',
'werror=true',
'cpp_std=c++23',
],
)
libsystemd_dep = dependency('libsystemd')
executable(
'slpd',
'main.cpp',
'slp_message_handler.cpp',
'slp_parser.cpp',
'slp_server.cpp',
'sock_channel.cpp',
dependencies: [ libsystemd_dep ],
install: true,
install_dir: get_option('sbindir'),
)