Skip to content

Commit

Permalink
Merge pull request #4 from jpakkane/1.2.8
Browse files Browse the repository at this point in the history
Updated definitions to new Meson release.
  • Loading branch information
jpakkane committed Dec 17, 2015
2 parents 570fb09 + 083d88d commit 061de85
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 7 deletions.
8 changes: 2 additions & 6 deletions meson.build
Original file line number Diff line number Diff line change
@@ -1,13 +1,9 @@
project('zlib', 'c')
project('zlib', 'c', version : '1.2.8', license : 'zlib')

src = ['adler32.c', 'crc32.c', 'deflate.c', 'infback.c', 'inffast.c', 'inflate.c',
'inftrees.c', 'trees.c', 'zutil.c',
'compress.c', 'uncompr.c', 'gzclose.c', 'gzlib.c', 'gzread.c', 'gzwrite.c']

if get_option('shared_lib')
zlib = shared_library('z', src)
else
zlib = static_library('z', src)
endif
zlib = library('z', src)

incdir = include_directories('.')
1 change: 0 additions & 1 deletion meson_options.txt

This file was deleted.

0 comments on commit 061de85

Please sign in to comment.