Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(3464)

Delta Between Two Patch Sets: source/blender/editors/sculpt_paint/SConscript

Issue 5306077: Uv tools Base URL: https://svn.blender.org/svnroot/bf-blender/trunk/blender/
Left Patch Set: Avoid hang in static island resolving when redoing operator stitch Created 12 years, 5 months ago
Right Patch Set: patch with changes so far. Created 12 years, 2 months ago
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
Left: Side by side diff | Download
Right: Side by side diff | Download
« no previous file with change/comment | « source/blender/editors/sculpt_paint/CMakeLists.txt ('k') | source/blender/editors/sculpt_paint/paint_image.c » ('j') | no next file with change/comment »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
LEFTRIGHT
1 #!/usr/bin/python 1 #!/usr/bin/python
2 Import ('env') 2 Import ('env')
3 3
4 sources = env.Glob('*.c') 4 sources = env.Glob('*.c')
5 5
6 defs = [] 6 defs = []
7 7
8 incs = '../include ../../blenlib ../../blenkernel ../../makesdna ../../imbuf' 8 incs = '../include ../../blenlib ../../blenkernel ../../makesdna ../../imbuf'
9 incs += ' ../../windowmanager #/intern/guardedalloc #/extern/glew/include' 9 incs += ' ../../windowmanager #/intern/guardedalloc #/extern/glew/include'
10 incs += ' ../../render/extern/include' 10 incs += ' ../../render/extern/include'
11 incs += ' ../../gpu ../../makesrna ../../blenloader ../uvedit' 11 incs += ' ../../gpu ../../makesrna ../../blenloader'
12 12
13 if env['OURPLATFORM'] == 'linux': 13 if env['OURPLATFORM'] == 'linux':
14 cflags='-pthread' 14 cflags='-pthread'
15 incs += ' ../../../extern/binreloc/include'
16
17 if env['OURPLATFORM'] == 'linuxcross':
18 if env['WITH_BF_OPENMP']:
19 incs += ' ' + env['BF_OPENMP_INC']
20
21 if env['OURPLATFORM'] in ('win32-vc', 'win32-mingw', 'linuxcross', 'win64-vc'):
22 incs += ' ' + env['BF_PTHREADS_INC']
23
24 env.BlenderLib ( 'bf_editors_sculpt_paint', sources, Split(incs), defines=defs, libtype=['core'], priority=[40] )
LEFTRIGHT

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b