Files
matar/apps/target/meson.build
2023-09-23 16:07:05 +05:30

15 lines
178 B
Meson

target_deps = [
lib
]
target_sources = files(
'main.cc'
)
executable(
'matar',
target_sources,
link_with: target_deps,
include_directories: inc,
install : true,
)