abacus: bootstrap build system
This commit is contained in:
commit
5b57981af7
6 changed files with 57 additions and 0 deletions
5
src/abacus.cc
Normal file
5
src/abacus.cc
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
#include <iostream>
|
||||
|
||||
int main() {
|
||||
std::cout << "Hello World!\n";
|
||||
}
|
||||
8
src/meson.build
Normal file
8
src/meson.build
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
abacus_sources = files(
|
||||
'abacus.cc',
|
||||
)
|
||||
|
||||
abacus = executable(
|
||||
'abacus',
|
||||
sources: abacus_sources,
|
||||
)
|
||||
Loading…
Add table
Add a link
Reference in a new issue