Adding initial project.
This commit is contained in:
parent
40d47da6e8
commit
82ffd20fc6
21
meson.build
Normal file
21
meson.build
Normal 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
5
src/main.c
Normal file
@ -0,0 +1,5 @@
|
||||
#include <stdio.h>
|
||||
|
||||
int main () {
|
||||
printf ("%s\n", "hello world");
|
||||
}
|
Loading…
Reference in New Issue
Block a user