Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Christian Butz
VTK
Commits
29d3a087
Commit
29d3a087
authored
Dec 18, 2010
by
David Partyka
Browse files
vtkhdf5: Temporarily unset BUILD_TESTING when traversing utility libraries.
parent
cb071936
Changes
1
Show whitespace changes
Inline
Side-by-side
CMake/vtkThirdParty.cmake
View file @
29d3a087
...
...
@@ -48,7 +48,12 @@ ENDMACRO(VTK_THIRD_PARTY_INCLUDE2)
#-----------------------------------------------------------------------------
MACRO
(
VTK_THIRD_PARTY_SUBDIR upper lower
)
IF
(
NOT VTK_USE_SYSTEM_
${
upper
}
)
# we don't want to build third party tests.
SET
(
__vtk_build_testing
${
BUILD_TESTING
}
)
SET
(
BUILD_TESTING OFF
)
ADD_SUBDIRECTORY
(
${
lower
}
)
# restore BUILD_TESTING
SET
(
BUILD_TESTING
${
__vtk_build_testing
}
)
ENDIF
(
NOT VTK_USE_SYSTEM_
${
upper
}
)
ENDMACRO
(
VTK_THIRD_PARTY_SUBDIR
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment