Skip to content
This repository was archived by the owner on Mar 10, 2025. It is now read-only.

Commit 061de85

Browse files
committed
Merge pull request #4 from jpakkane/1.2.8
Updated definitions to new Meson release.
2 parents 570fb09 + 083d88d commit 061de85

File tree

2 files changed

+2
-7
lines changed

2 files changed

+2
-7
lines changed

meson.build

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,9 @@
1-
project('zlib', 'c')
1+
project('zlib', 'c', version : '1.2.8', license : 'zlib')
22

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

7-
if get_option('shared_lib')
8-
zlib = shared_library('z', src)
9-
else
10-
zlib = static_library('z', src)
11-
endif
7+
zlib = library('z', src)
128

139
incdir = include_directories('.')

meson_options.txt

Lines changed: 0 additions & 1 deletion
This file was deleted.

0 commit comments

Comments
 (0)