Files
matar/apps/target/meson.build
2023-08-15 14:59:53 +05:30

15 lines
195 B
Meson

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