adding in basic meson building of the two output executables

This commit is contained in:
Arjun Patel
2024-01-14 09:08:48 -08:00
parent 2a5a6add3a
commit a5e51b0bc6
4 changed files with 17 additions and 0 deletions
+1
View File
@@ -0,0 +1 @@
builddir/
+3
View File
@@ -0,0 +1,3 @@
project('bluetooth-beacon-receiver', 'cpp')
executable('bluetooth-beacon', 'src/beacon.cpp')
executable('bluetooth-receiver', 'src/receiver.cpp')
+6
View File
@@ -0,0 +1,6 @@
#include <stdio.h>
int main(int argc, char *argv[]) {
printf("Hello world, I am the beacon\n");
return 0;
}
+7
View File
@@ -0,0 +1,7 @@
#include <cstdio>
int main(int argc, char *argv[]) {
printf("Hello World, I am the receiver\n");
return 0;
}