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

SConscript « lzma « extern - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 015cdfe339f689527d01cdfd6ed76e8d9b2a0150 (plain)
1
2
3
4
5
6
7
8
9
#!/usr/bin/python
Import ('env')

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

defs = ''
incs = ' . ' 

env.BlenderLib ('bf_lzma', sources, Split(incs), Split(defs), libtype=['intern'], priority=[40] )