-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCTestConfig.cmake
More file actions
45 lines (43 loc) · 2.02 KB
/
CTestConfig.cmake
File metadata and controls
45 lines (43 loc) · 2.02 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
#
# Copyright (c) 2013 Limit Point Systems, Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
#=============================================================================
# CMake - Cross Platform Makefile Generator
# Copyright 2000-2009 Kitware, Inc., Insight Software Consortium
#
# Distributed under the OSI-approved BSD License (the "License");
# see accompanying file Copyright.txt for details.
#
# This software is distributed WITHOUT ANY WARRANTY; without even the
# implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
# See the License for more information.
#=============================================================================
set(CTEST_PROJECT_NAME "SheafSystemTest" CACHE STRING "")
set(CTEST_NIGHTLY_START_TIME "8:00:00 UTC" CACHE STRING "")
set(CTEST_DROP_METHOD "http" CACHE STRING "")
set(CTEST_DROP_SITE "www.limitpoint.com" CACHE STRING "")
set(CTEST_DROP_LOCATION "/CDash/submit.php?project=SheafSystemTest" CACHE STRING "")
set(CTEST_DROP_SITE_CDASH TRUE CACHE BOOL "")
set(CTEST_CDASH_VERSION "3.5.0" CACHE STRING "")
set(CTEST_CDASH_QUERY_VERSION TRUE CACHE BOOL "")
# Mark the least used as advanced so as not to clutter up the ccmake interface.
# The user will want to change start time and drop site, so we will
# leave them unchanged.
mark_as_advanced(CTEST_PROJECT_NAME)
mark_as_advanced(CTEST_DROP_METHOD)
mark_as_advanced(CTEST_DROP_LOCATION)
mark_as_advanced(CTEST_DROP_SITE_CDASH)
mark_as_advanced(CTEST_CDASH_VERSION)
mark_as_advanced(CTEST_CDASH_QUERY_VERSION)