-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathcmake_config.h.in
110 lines (103 loc) · 5.21 KB
/
cmake_config.h.in
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
/*
//@HEADER
// *****************************************************************************
//
// cmake_config.h.in
// DARMA/vt => Virtual Transport
//
// Copyright 2019-2021 National Technology & Engineering Solutions of Sandia, LLC
// (NTESS). Under the terms of Contract DE-NA0003525 with NTESS, the U.S.
// Government retains certain rights in this software.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are met:
//
// * Redistributions of source code must retain the above copyright notice,
// this list of conditions and the following disclaimer.
//
// * Redistributions in binary form must reproduce the above copyright notice,
// this list of conditions and the following disclaimer in the documentation
// and/or other materials provided with the distribution.
//
// * Neither the name of the copyright holder nor the names of its
// contributors may be used to endorse or promote products derived from this
// software without specific prior written permission.
//
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
// ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
// LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
// CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
// SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
// INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
// CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
// ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
// POSSIBILITY OF SUCH DAMAGE.
//
// Questions? Contact [email protected]
//
// *****************************************************************************
//@HEADER
*/
#define vt_feature_cmake_no_feature @vt_feature_cmake_no_feature@
#define vt_feature_cmake_bit_check_overflow @vt_feature_cmake_bit_check_overflow@
#define vt_feature_cmake_trace_enabled @vt_feature_cmake_trace_enabled@
#define vt_feature_cmake_trace_only @vt_feature_cmake_trace_only@
#define vt_feature_cmake_lblite @vt_feature_cmake_lblite@
#define vt_feature_cmake_production @vt_feature_cmake_production@
#define vt_feature_cmake_mpi_rdma @vt_feature_cmake_mpi_rdma@
#define vt_feature_cmake_print_term_msgs @vt_feature_cmake_print_term_msgs@
#define vt_feature_cmake_no_pool_alloc_env @vt_feature_cmake_no_pool_alloc_env@
#define vt_feature_cmake_memory_pool @vt_feature_cmake_memory_pool@
#define vt_feature_cmake_priority_bits_level @vt_feature_cmake_priority_bits_level@
#define vt_feature_cmake_priorities @vt_feature_cmake_priorities@
#define vt_feature_cmake_fcontext @vt_feature_cmake_fcontext@
#define vt_feature_cmake_test_trace_on @vt_feature_cmake_test_trace_on@
#define vt_feature_cmake_mimalloc @vt_feature_cmake_mimalloc@
#define vt_feature_cmake_mpi_access_guards @vt_feature_cmake_mpi_access_guards@
#define vt_feature_cmake_zoltan @vt_feature_cmake_zoltan@
#define vt_feature_cmake_ci_build @vt_feature_cmake_ci_build@
#define vt_feature_cmake_diagnostics @vt_feature_cmake_diagnostics@
#define vt_feature_cmake_diagnostics_runtime @vt_feature_cmake_diagnostics_runtime@
#define vt_feature_cmake_libfort @vt_feature_cmake_libfort@
#define vt_feature_cmake_production_build @vt_feature_cmake_production_build@
#define vt_feature_cmake_debug_verbose @vt_feature_cmake_debug_verbose@
#define vt_feature_cmake_rdma_tests @vt_feature_cmake_rdma_tests@
#define vt_feature_cmake_external_fmt @vt_feature_cmake_external_fmt@
#define vt_feature_cmake_libunwind @vt_feature_cmake_libunwind@
#define vt_feature_cmake_tv @vt_feature_cmake_tv@
#define vt_detected_max_num_nodes @cmake_detected_max_num_nodes@
#cmakedefine vt_quirked_trivially_copyable_on_msg
#cmakedefine vt_quirked_serialize_method_detection
#cmakedefine vt_has_malloc_h
#cmakedefine vt_has_malloc_malloc_h
#cmakedefine vt_has_mach_mach_h
#cmakedefine vt_has_mstats
#cmakedefine vt_has_popen
#cmakedefine vt_has_pclose
#cmakedefine vt_has_sbrk
#cmakedefine vt_has_mallinfo
#cmakedefine vt_has_mallinfo2
#cmakedefine vt_has_getrusage
#cmakedefine vt_has_sysinfo
#cmakedefine vt_has_mach_task_self
#cmakedefine vt_has_getpid
#cmakedefine vt_has_sys_resource_h
#cmakedefine vt_has_unistd_h
#cmakedefine vt_has_inttypes_h
#cmakedefine vt_has_sysconf
#cmakedefine vt_has_execinfo_h
#if vt_feature_cmake_external_fmt
#define INCLUDE_FMT_CORE <fmt/core.h>
#define INCLUDE_FMT_FORMAT <fmt/format.h>
#define INCLUDE_FMT_OSTREAM <fmt/ostream.h>
#define VT_FMT_NAMESPACE_BEGIN namespace fmt {
#define VT_FMT_NAMESPACE_END }
#else
#define INCLUDE_FMT_CORE <fmt-vt/core.h>
#define INCLUDE_FMT_FORMAT <fmt-vt/format.h>
#define INCLUDE_FMT_OSTREAM <fmt-vt/ostream.h>
#define VT_FMT_NAMESPACE_BEGIN namespace fmt { inline namespace vt {
#define VT_FMT_NAMESPACE_END } }
#endif