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/.
|
|
|
|
|
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',
|
|
|
|
]
|
|
|
|
|
|
|
|
MSVC_ENABLE_PGO = True
|
|
|
|
|
2013-11-22 18:03:21 +04:00
|
|
|
if CONFIG['GKMEDIAS_SHARED_LIBRARY']:
|
2013-10-24 02:09:00 +04:00
|
|
|
NO_VISIBILITY_FLAGS = True
|
2013-11-19 06:47:14 +04:00
|
|
|
|
|
|
|
FINAL_LIBRARY = 'gkmedias'
|