abacus: bootstrap build system

This commit is contained in:
Bruno BELANYI 2021-08-19 21:32:33 +02:00
commit 5b57981af7
6 changed files with 57 additions and 0 deletions

5
src/abacus.cc Normal file
View file

@ -0,0 +1,5 @@
#include <iostream>
int main() {
std::cout << "Hello World!\n";
}

8
src/meson.build Normal file
View file

@ -0,0 +1,8 @@
abacus_sources = files(
'abacus.cc',
)
abacus = executable(
'abacus',
sources: abacus_sources,
)