2016-07-14 19:16:42 +03:00
|
|
|
# -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*-
|
2013-02-26 00:47:21 +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-04-16 23:24:43 +04:00
|
|
|
EXPORTS += [
|
|
|
|
'qcms.h',
|
|
|
|
'qcmstypes.h',
|
|
|
|
]
|
|
|
|
|
2013-10-25 03:23:05 +04:00
|
|
|
SOURCES += [
|
2013-08-22 10:56:02 +04:00
|
|
|
'chain.c',
|
|
|
|
'iccread.c',
|
|
|
|
'matrix.c',
|
|
|
|
'transform.c',
|
|
|
|
'transform_util.c',
|
|
|
|
]
|
|
|
|
|
2015-06-05 02:30:52 +03:00
|
|
|
FINAL_LIBRARY = 'xul'
|
2014-03-06 02:00:17 +04:00
|
|
|
|
|
|
|
if CONFIG['GNU_CC']:
|
|
|
|
CFLAGS += ['-Wno-missing-field-initializers']
|
|
|
|
|
|
|
|
use_sse1 = False
|
|
|
|
use_sse2 = False
|
|
|
|
use_altivec = False
|
|
|
|
if '86' in CONFIG['OS_TEST']:
|
|
|
|
use_sse2 = True
|
|
|
|
if CONFIG['_MSC_VER']:
|
|
|
|
if CONFIG['OS_ARCH'] != 'WINNT' or CONFIG['OS_TEST'] != 'x86_64':
|
|
|
|
use_sse1 = True
|
|
|
|
else:
|
|
|
|
use_sse1 = True
|
2016-08-16 12:17:00 +03:00
|
|
|
elif CONFIG['HAVE_ALTIVEC']:
|
|
|
|
use_altivec = True
|
2014-03-06 02:00:17 +04:00
|
|
|
|
|
|
|
if use_sse1:
|
|
|
|
SOURCES += ['transform-sse1.c']
|
2014-03-20 05:55:00 +04:00
|
|
|
SOURCES['transform-sse1.c'].flags += CONFIG['SSE_FLAGS']
|
2014-03-06 02:00:17 +04:00
|
|
|
|
|
|
|
if use_sse2:
|
|
|
|
SOURCES += ['transform-sse2.c']
|
2014-03-20 05:55:00 +04:00
|
|
|
SOURCES['transform-sse2.c'].flags += CONFIG['SSE2_FLAGS']
|
2014-03-06 02:00:17 +04:00
|
|
|
|
|
|
|
if use_altivec:
|
|
|
|
SOURCES += ['transform-altivec.c']
|
|
|
|
SOURCES['transform-altivec.c'].flags += ['-maltivec']
|