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

SConscript « freestyle « blender « source - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ac1cbefa48ce26f310e82908a4f61d2382b92f7a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
#!/usr/bin/python
import sys
Import ('env')

sources = []

incs = [
    '#/intern/guardedalloc',
    '#/extern/glew/include',
    '../blenkernel',
    '../blenlib',
    '../blentranslation',
    '../freestyle',
    '../imbuf',
    '../makesdna',
    '../makesrna',
    '../python',
    '../python/intern',
    '../render/extern/include',
    '../render/intern/include',
    env['BF_PYTHON_INC'],
    env['BF_PNG_INC'],
    ]
incs = ' '.join(incs)

defs = ['WITH_FREESTYLE']

if env['OURPLATFORM'] in ('win32-vc', 'win32-mingw', 'linuxcross', 'win64-vc'):
    incs += ' ' + env['BF_PTHREADS_INC']

if env['WITH_BF_INTERNATIONAL']:
    defs.append('WITH_INTERNATIONAL')

########################################################
#   folders sources
########################################################

#   system
prefix = 'intern/system'
system_sources = env.Glob(prefix + '/*.cpp')

#   image
prefix = 'intern/image'
image_sources = env.Glob(prefix + '/*.cpp')

#   geometry
prefix = 'intern/geometry'
geometry_sources = env.Glob(prefix + '/*.cpp')

#   scene_graph
prefix = 'intern/scene_graph'
scene_graph_sources = env.Glob(prefix + '/*.cpp')

#   winged_edge
prefix = 'intern/winged_edge'
winged_edge_sources = env.Glob(prefix + '/*.cpp')

#   view_map
prefix = 'intern/view_map'
view_map_sources = env.Glob(prefix + '/*.cpp')

#   stroke
prefix = 'intern/stroke'
stroke_sources = env.Glob(prefix + '/*.cpp')

#   application
prefix = 'intern/application'
application_sources = env.Glob(prefix + '/*.cpp')

#   blender_interface
prefix = 'intern/blender_interface'
interface_sources = env.Glob(prefix + '/*.cpp')

#   Python
prefix = 'intern/python'
python_sources = env.Glob(prefix + '/*.cpp') + \
                 env.Glob(prefix + '/*/*.cpp') + \
                 env.Glob(prefix + '/*/*/*.cpp') + \
                 env.Glob(prefix + '/*/*/*/*.cpp')

sources = system_sources + image_sources + geometry_sources + scene_graph_sources + \
          winged_edge_sources + view_map_sources + stroke_sources + \
          application_sources + interface_sources

if False: # gives link errors 'win' in env['OURPLATFORM']:
    env.BlenderLib(libname="bf_freestyle_python", sources=python_sources, includes=Split(incs),
                   defines=defs, libtype=['core'], priority = [369] # bf_python is 361
    )
else:
    sources += python_sources

env.BlenderLib(libname="bf_freestyle", sources=sources, includes=Split(incs),
               defines=defs, libtype=['core'], priority = [370] # bf_python is 361
)