Files
matar/apps/target/meson.build
2023-08-27 21:43:09 +05:30

15 lines
191 B
Meson

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