Adding initial project.

This commit is contained in:
sergiotarxz 2022-01-05 22:50:52 +01:00
parent 40d47da6e8
commit 82ffd20fc6
2 changed files with 26 additions and 0 deletions

21
meson.build Normal file
View File

@ -0,0 +1,21 @@
project('depueblo', 'c')
inc = include_directories('include')
depueblo_deps = [
dependency('glib-2.0')
]
sources = [
]
link_arguments = [
]
executable('depueblo',
'src/main.c', sources,
dependencies : depueblo_deps,
include_directories : inc,
install: true,
link_args : link_arguments
)

5
src/main.c Normal file
View File

@ -0,0 +1,5 @@
#include <stdio.h>
int main () {
printf ("%s\n", "hello world");
}