Welcome to mirror list, hosted at ThFree Co, Russian Federation.

SConscript « libopenjpeg « extern - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f0a93f6e2d9cdeae878c404500ad5d58c737da2b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/usr/bin/python

import sys

Import('env')

sources = env.Glob('*.c')
incs = '.'

flags = "-Wall -O3 -ffast-math -std=c99"

oj_env = env.Copy();
oj_env.Replace(CCFLAGS = '')
oj_env.Replace(BF_DEBUG_FLAGS = '')

oj_env.BlenderLib ( libname='extern_openjpeg', 
                    sources=sources, includes=Split(incs),
                    defines=[],
                    libtype=['core','intern','player'],
                    priority=[10, 10, 300], compileflags = Split(flags))