Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
BlenderPhi
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
raas
BlenderPhi
Commits
54db7f1b
Commit
54db7f1b
authored
11 years ago
by
Brecht Van Lommel
Browse files
Options
Downloads
Patches
Plain Diff
Buildbot: disable command length workaround for now, seems to give link errors.
parent
d54b2391
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
source/blender/compositor/SConscript
+9
-4
9 additions, 4 deletions
source/blender/compositor/SConscript
source/blender/freestyle/SConscript
+8
-5
8 additions, 5 deletions
source/blender/freestyle/SConscript
with
17 additions
and
9 deletions
source/blender/compositor/SConscript
+
9
−
4
View file @
54db7f1b
...
@@ -28,7 +28,6 @@
...
@@ -28,7 +28,6 @@
Import
(
'
env
'
)
Import
(
'
env
'
)
defs
=
[
'
GLEW_STATIC
'
]
defs
=
[
'
GLEW_STATIC
'
]
# split into 3 modules to work around command length limit on Windows
sources_intern
=
env
.
Glob
(
'
intern/*.cpp
'
)
sources_intern
=
env
.
Glob
(
'
intern/*.cpp
'
)
sources_nodes
=
env
.
Glob
(
'
nodes/*.cpp
'
)
sources_nodes
=
env
.
Glob
(
'
nodes/*.cpp
'
)
sources_operations
=
env
.
Glob
(
'
operations/*.cpp
'
)
sources_operations
=
env
.
Glob
(
'
operations/*.cpp
'
)
...
@@ -59,7 +58,13 @@ incs = [
...
@@ -59,7 +58,13 @@ incs = [
if
env
[
'
OURPLATFORM
'
]
in
(
'
win32-vc
'
,
'
win32-mingw
'
,
'
linuxcross
'
,
'
win64-vc
'
):
if
env
[
'
OURPLATFORM
'
]
in
(
'
win32-vc
'
,
'
win32-mingw
'
,
'
linuxcross
'
,
'
win64-vc
'
):
incs
.
append
(
env
[
'
BF_PTHREADS_INC
'
])
incs
.
append
(
env
[
'
BF_PTHREADS_INC
'
])
env
.
BlenderLib
(
'
bf_composite_intern
'
,
sources_intern
,
incs
,
defines
=
defs
,
libtype
=
[
'
core
'
],
priority
=
[
166
])
if
False
:
# gives link errors 'win' in env['OURPLATFORM']:
env
.
BlenderLib
(
'
bf_composite_nodes
'
,
sources_nodes
,
incs
,
defines
=
defs
,
libtype
=
[
'
core
'
],
priority
=
[
165
])
# split into 3 modules to work around command length limit on Windows
env
.
BlenderLib
(
'
bf_composite_operations
'
,
sources_operations
,
incs
,
defines
=
defs
,
libtype
=
[
'
core
'
],
priority
=
[
164
])
env
.
BlenderLib
(
'
bf_composite_intern
'
,
sources_intern
,
incs
,
defines
=
defs
,
libtype
=
[
'
core
'
],
priority
=
[
166
])
env
.
BlenderLib
(
'
bf_composite_nodes
'
,
sources_nodes
,
incs
,
defines
=
defs
,
libtype
=
[
'
core
'
],
priority
=
[
165
])
env
.
BlenderLib
(
'
bf_composite_operations
'
,
sources_operations
,
incs
,
defines
=
defs
,
libtype
=
[
'
core
'
],
priority
=
[
164
])
else
:
sources
=
sources_intern
+
sources_nodes
+
sources_operations
env
.
BlenderLib
(
'
bf_composite
'
,
sources
,
incs
,
defines
=
defs
,
libtype
=
[
'
core
'
],
priority
=
[
164
])
This diff is collapsed.
Click to expand it.
source/blender/freestyle/SConscript
+
8
−
5
View file @
54db7f1b
...
@@ -78,11 +78,14 @@ sources = system_sources + image_sources + geometry_sources + scene_graph_source
...
@@ -78,11 +78,14 @@ sources = system_sources + image_sources + geometry_sources + scene_graph_source
winged_edge_sources
+
view_map_sources
+
stroke_sources
+
\
winged_edge_sources
+
view_map_sources
+
stroke_sources
+
\
application_sources
+
interface_sources
application_sources
+
interface_sources
env
.
BlenderLib
(
libname
=
"
bf_freestyle
"
,
sources
=
sources
,
includes
=
Split
(
incs
),
if
False
:
# gives link errors 'win' in env['OURPLATFORM']:
defines
=
defs
,
libtype
=
[
'
core
'
],
priority
=
[
370
]
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
_python
"
,
sources
=
python_
sources
,
includes
=
Split
(
incs
),
env
.
BlenderLib
(
libname
=
"
bf_freestyle
"
,
sources
=
sources
,
includes
=
Split
(
incs
),
defines
=
defs
,
libtype
=
[
'
core
'
],
priority
=
[
3
69
]
# bf_python is 361
defines
=
defs
,
libtype
=
[
'
core
'
],
priority
=
[
3
70
]
# bf_python is 361
)
)
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment