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

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

Issue 5285047: Camera tracking integration Base URL: https://svn.blender.org/svnroot/bf-blender/trunk/blender/
Left Patch Set: Created 12 years, 5 months ago
Right Patch Set: Updated to tomato rev41255 Created 12 years, 5 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
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 defs = [] 5 defs = []
6 incs = '../include ../../blenkernel ../../blenloader ../../blenfont ../../blenli b ../../imbuf ../../makesdna' 6 incs = '../include ../../blenkernel ../../blenloader ../../blenfont ../../blenli b ../../imbuf ../../makesdna'
7 incs += ' ../../makesrna ../../windowmanager #/intern/guardedalloc #/extern/glew /include' 7 incs += ' ../../makesrna ../../windowmanager #/intern/guardedalloc #/extern/glew /include'
8 8
9 env.BlenderLib ( 'bf_editors_space_clip', sources, Split(incs), defs, libtype=[' core'], priority=[95] ) 9 env.BlenderLib ( 'bf_editors_space_clip', sources, Split(incs), defs, libtype=[' core'], priority=[95] )
10 #!/usr/bin/env python
11 #
12 # ***** BEGIN GPL LICENSE BLOCK *****
13 #
14 # This program is free software; you can redistribute it and/or
15 # modify it under the terms of the GNU General Public License
16 # as published by the Free Software Foundation; either version 2
17 # of the License, or (at your option) any later version.
18 #
19 # This program is distributed in the hope that it will be useful,
20 # but WITHOUT ANY WARRANTY; without even the implied warranty of
21 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22 # GNU General Public License for more details.
23 #
24 # You should have received a copy of the GNU General Public License
25 # along with this program; if not, write to the Free Software Foundation,
26 # Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
27 #
28 # The Original Code is Copyright (C) 2006, Blender Foundation
29 # All rights reserved.
30 #
31 # The Original Code is: all of this file.
32 #
33 # Contributor(s): Nathan Letwory.
34 #
35 # ***** END GPL LICENSE BLOCK *****
36
37 Import ('env')
38
39 sources = env.Glob('*.c')
40 defs = []
41 incs = [
42 '#/intern/guardedalloc',
43 '#/extern/glew/include',
44 '../include',
45 '../../blenfont',
46 '../../blenkernel',
47 '../../blenlib',
48 '../../gpu',
49 '../../imbuf',
50 '../../makesdna',
51 '../../makesrna',
52 '../../windowmanager',
53 ]
54 incs = ' '.join(incs)
55
56 if env['WITH_BF_INTERNATIONAL']:
57 defs.append('WITH_INTERNATIONAL')
58 ····
59 if env['OURPLATFORM'] in ('win32-vc', 'win32-mingw', 'linuxcross', 'win64-vc', ' win64-mingw'):
60 incs += ' ' + env['BF_PTHREADS_INC']
61
62 env.BlenderLib ( 'bf_editors_space_clip', sources, Split(incs), defs, libtype=[' core'], priority=[95] )
LEFTRIGHT

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