1project('obmc-console', 'c', 2 default_options: [ 3 'buildtype=debugoptimized', 4 'warning_level=3', 5 'werror=true', 6 'c_std=gnu17', 7 'tests=' + (meson.is_subproject() ? 'false' : 'true'), 8 ], 9 version: '1.1.0', 10 meson_version: '>=1.1.0', 11) 12 13add_project_arguments('-D_GNU_SOURCE', language: 'c') 14 15systemdsystemunitdir = dependency('systemd').get_variable('systemdsystemunitdir') 16install_data('conf/obmc-console@.service.in', 17 'conf/obmc-console@.socket.in', 18 rename: [ 19 'obmc-console@.service', 20 'obmc-console@.socket', 21 ], 22 install_dir: systemdsystemunitdir, 23 ) 24if get_option('ssh').allowed() 25 install_data('conf/obmc-console-ssh@.service.in', 26 rename: [ 27 'obmc-console-ssh@.service' 28 ], 29 install_dir: systemdsystemunitdir, 30 ) 31endif 32 33if get_option('concurrent-servers') 34 install_data('conf/client.2200.conf.in', 35 rename: [ 'client.2200.conf' ], 36 install_dir: systemdsystemunitdir) 37else 38 if get_option('ssh').allowed() 39 install_data('conf/obmc-console-ssh.socket.in', 40 rename: [ 'obmc-console-ssh.socket' ], 41 install_dir: systemdsystemunitdir) 42 install_data('conf/obmc-console-ssh@.service.d/use-socket.conf.in', 43 rename: [ 'use-socket.conf' ], 44 install_dir: systemdsystemunitdir / 'obmc-console-ssh@.service.d') 45 endif 46endif 47 48udev = dependency('udev', required: get_option('udev')) 49if udev.found() 50 install_data('conf/80-obmc-console-uart.rules.in', 51 rename: [ '80-obmc-console-uart.rules' ], 52 install_dir: udev.get_variable('udevdir') / 'rules.d') 53endif 54 55iniparser_dep = dependency('iniparser') 56 57executable('obmc-console-server', 58 'config.c', 59 'console-dbus.c', 60 'console-server.c', 61 'console-socket.c', 62 'log-handler.c', 63 'ringbuffer.c', 64 'socket-handler.c', 65 'tty-handler.c', 66 'util.c', 67 c_args: [ 68 '-DLOCALSTATEDIR="@0@"'.format(get_option('localstatedir')), 69 '-DSYSCONFDIR="@0@"'.format(get_option('sysconfdir')) 70 ], 71 dependencies: [ 72 dependency('libsystemd'), 73 iniparser_dep, 74 meson.get_compiler('c').find_library('rt') 75 ], 76 install_dir: get_option('sbindir'), 77 install: true) 78 79executable('obmc-console-client', 80 'config.c', 81 'console-client.c', 82 'console-socket.c', 83 'util.c', 84 c_args: [ 85 '-DSYSCONFDIR="@0@"'.format(get_option('sysconfdir')) 86 ], 87 dependencies: [ 88 iniparser_dep, 89 ], 90 install: true) 91 92subdir('test') 93