2019-07-15 21:18:07 +02:00
|
|
|
chardev_ss = ss.source_set()
|
|
|
|
chardev_ss.add(files(
|
|
|
|
'char-fe.c',
|
|
|
|
'char-file.c',
|
|
|
|
'char-io.c',
|
|
|
|
'char-mux.c',
|
|
|
|
'char-null.c',
|
|
|
|
'char-pipe.c',
|
|
|
|
'char-ringbuf.c',
|
|
|
|
'char-serial.c',
|
|
|
|
'char-socket.c',
|
|
|
|
'char-stdio.c',
|
|
|
|
'char-udp.c',
|
|
|
|
'char.c',
|
|
|
|
))
|
|
|
|
chardev_ss.add(when: 'CONFIG_POSIX', if_true: files(
|
|
|
|
'char-fd.c',
|
|
|
|
'char-parallel.c',
|
|
|
|
'char-pty.c',
|
|
|
|
))
|
|
|
|
chardev_ss.add(when: 'CONFIG_WIN32', if_true: files(
|
|
|
|
'char-console.c',
|
|
|
|
'char-win-stdio.c',
|
|
|
|
'char-win.c',
|
|
|
|
))
|
|
|
|
|
|
|
|
chardev_ss = chardev_ss.apply(config_host, strict: false)
|
|
|
|
libchardev = static_library('chardev', chardev_ss.sources() + genh,
|
|
|
|
name_suffix: 'fa',
|
|
|
|
build_by_default: false)
|
|
|
|
|
|
|
|
chardev = declare_dependency(link_whole: libchardev)
|
2019-07-29 15:40:07 +02:00
|
|
|
|
|
|
|
softmmu_ss.add(files('chardev-sysemu.c', 'msmouse.c', 'wctablet.c', 'testdev.c'))
|
|
|
|
softmmu_ss.add(when: ['CONFIG_SPICE', spice], if_true: files('spice.c'))
|
|
|
|
|
|
|
|
chardev_modules = {}
|
|
|
|
|
2020-09-03 17:29:33 +02:00
|
|
|
if config_host.has_key('CONFIG_BRLAPI')
|
2019-07-29 15:40:07 +02:00
|
|
|
module_ss = ss.source_set()
|
2020-09-03 17:29:33 +02:00
|
|
|
module_ss.add(when: [brlapi], if_true: [files('baum.c'), pixman])
|
2020-08-24 17:52:36 +02:00
|
|
|
chardev_modules += { 'baum': module_ss }
|
2019-07-29 15:40:07 +02:00
|
|
|
endif
|
|
|
|
|
|
|
|
modules += { 'chardev': chardev_modules }
|