2013-04-01 22:36:59 +04:00
|
|
|
# -*- Mode: python; c-basic-offset: 4; indent-tabs-mode: nil; tab-width: 40 -*-
|
2013-02-26 00:47:22 +04:00
|
|
|
# vim: set filetype=python:
|
|
|
|
# This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
|
2015-03-03 22:36:00 +03:00
|
|
|
with Files('*'):
|
|
|
|
BUG_COMPONENT = ('Core', 'Video/Audio')
|
|
|
|
|
2013-10-24 02:09:00 +04:00
|
|
|
EXPORTS.ogg += [
|
|
|
|
'include/ogg/config_types.h',
|
|
|
|
'include/ogg/ogg.h',
|
|
|
|
'include/ogg/os_types.h',
|
|
|
|
]
|
|
|
|
|
2013-11-12 23:32:18 +04:00
|
|
|
UNIFIED_SOURCES += [
|
2014-03-05 19:58:29 +04:00
|
|
|
'src/ogg_alloc.c',
|
2013-10-24 02:09:00 +04:00
|
|
|
'src/ogg_bitwise.c',
|
|
|
|
'src/ogg_framing.c',
|
|
|
|
]
|
|
|
|
|
2013-11-19 06:47:14 +04:00
|
|
|
FINAL_LIBRARY = 'gkmedias'
|