abacus/src/meson.build

12 lines
138 B
Meson
Raw Normal View History

2021-08-19 21:32:33 +02:00
abacus_sources = files(
'abacus.cc',
)
2021-08-20 16:35:34 +02:00
subdir('bignum')
subdir('parse')
2021-08-19 21:32:33 +02:00
abacus = executable(
'abacus',
sources: abacus_sources,
)