init
This commit is contained in:
commit
ffe1bd554b
6 changed files with 93 additions and 0 deletions
9
meson.build
Normal file
9
meson.build
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
project('tutorial', 'c')
|
||||
|
||||
CC = meson.get_compiler('c')
|
||||
|
||||
zlib = dependency('zlib', version : '1.2.11', static: true, required: true)
|
||||
|
||||
files = files('src/main.c')
|
||||
|
||||
executable('compressor', files, dependencies: zlib)
|
||||
Loading…
Add table
Add a link
Reference in a new issue