Skip to content

Commit

Permalink
Merge pull request #2 from jpakkane/1.3.2
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 ab95b14 + 26a612d commit 42008f7
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 10 deletions.
2 changes: 1 addition & 1 deletion meson.build
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
project('libogg', 'c')
project('libogg', 'c', version : '1.3.2', license : 'bsd-like')

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

This file was deleted.

9 changes: 1 addition & 8 deletions src/meson.build
Original file line number Diff line number Diff line change
@@ -1,15 +1,8 @@
sources = ['bitwise.c', 'framing.c']

if get_option('shared_lib')
libtype = 'shared_library'
else
libtype = 'static_library'
endif

libogg = build_target('ogg',
libogg = library('ogg',
sources,
include_directories : incdir,
target_type : libtype
)

bw_test = executable('bitwise', 'bitwise.c',
Expand Down

0 comments on commit 42008f7

Please sign in to comment.