Files
matar/src/meson.build
Amneesh Singh 3cf5cbd024 refactor: make linter happy
also add a few unused coprocessor instructions

Signed-off-by: Amneesh Singh <natto@weirdnatto.in>
2023-09-14 01:19:41 +05:30

18 lines
274 B
Meson

lib_sources = files(
'memory.cc',
'bus.cc'
)
subdir('cpu')
fmt = dependency('fmt', version : '>=10.1.0')
lib = library(
meson.project_name(),
lib_sources,
dependencies: [fmt],
install: true,
cpp_args: '-DFMT_HEADER_ONLY'
)
import('pkgconfig').generate(lib)