Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
Todd Kordenbrock
VTK-m
Commits
4e07825a
Commit
4e07825a
authored
Jun 01, 2018
by
Allison Vacanti
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Hide BUILD_TESTING cmake option.
We use VTKm_ENABLE_TESTING to disable/enable tests.
parent
b8468761
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
1 deletion
+10
-1
CMakeLists.txt
CMakeLists.txt
+10
-1
No files found.
CMakeLists.txt
View file @
4e07825a
...
...
@@ -166,7 +166,16 @@ endif()
#-----------------------------------------------------------------------------
if
(
VTKm_ENABLE_TESTING
)
enable_testing
()
include
(
CTest
)
# Only include CTest if it has not been included by a superproject. The
# variable DEFAULT_CTEST_CONFIGURATION_TYPE is a non-cached variable set by
# CTest.cmake, so we'll use that to determine if it's already included.
if
(
NOT DEFINED DEFAULT_CTEST_CONFIGURATION_TYPE
)
include
(
CTest
)
# Mark this as advanced to avoid confusion, since we actually rely on
# VTKm_ENABLE_TESTING.
mark_as_advanced
(
BUILD_TESTING
)
endif
()
configure_file
(
${
VTKm_SOURCE_DIR
}
/CTestCustom.cmake.in
${
VTKm_BINARY_DIR
}
/CTestCustom.cmake @ONLY
)
...
...
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