-
Notifications
You must be signed in to change notification settings - Fork 107
Expand file tree
/
Copy pathCMakeLists.txt
More file actions
413 lines (355 loc) · 19.4 KB
/
CMakeLists.txt
File metadata and controls
413 lines (355 loc) · 19.4 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
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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
cmake_minimum_required(VERSION 3.19) # string(json
cmake_policy(SET CMP0074 NEW)
if (POLICY CMP0135)
# Avoid warning about DOWNLOAD_EXTRACT_TIMESTAMP in CMake 3.24:
cmake_policy(SET CMP0135 NEW)
endif ()
############################# Version and Metadata #############################
# can't use PROJECT_SOURCE_DIR etc. before project() call
list(APPEND CMAKE_MODULE_PATH ${CMAKE_CURRENT_SOURCE_DIR}/cmake/modules)
include(DynamicVersion)
dynamic_version(
PROJECT_PREFIX Libint2Compiler_
GIT_ARCHIVAL_FILE ${CMAKE_CURRENT_SOURCE_DIR}/cmake/modules/.git_archival.txt
VERSION_FULL_MODE POST
OUTPUT_COMMIT LibintRepository_COMMIT
OUTPUT_VERSION LibintRepository_VERSION
OUTPUT_DESCRIBE LibintRepository_DESCRIBE
OUTPUT_DISTANCE LibintRepository_DISTANCE
OUTPUT_SHORT_HASH LibintRepository_SHORT_HASH
OUTPUT_VERSION_FULL LibintRepository_VERSION_FULL
)
set(CMAKE_BUILD_TYPE "Release" CACHE STRING "Choose the type of build.") # foil Ninja Debug on Windows
project(
Libint2Compiler
VERSION ${LibintRepository_VERSION}
DESCRIPTION
"A library for the evaluation of molecular integrals of many-body operators over Gaussian functions"
HOMEPAGE_URL "http://libint.valeyev.net"
LANGUAGES CXX
)
# * http://libint.valeyev.net/ redirects to https://github.com/evaleev/libint
set(${PROJECT_NAME}_AUTHORS "Edward F. Valeev")
set(${PROJECT_NAME}_LICENSE "GPL-3.0-only for generator; LGPL-3.0-only for generated library")
# along with project(... VERSION) above scanned by dynamic_version() from `git
# describe`, these are the authoritative version source (formerly in configure.ac)
set(LIBINT_BUILDID "post999" CACHE STRING "Custom build ID suffix for the exported tarball")
set(LIBINT_SO_VERSION "2:3:0")
set(LIBINT_DOI "10.5281/zenodo.10369117") # 2.8.0
include(int_versions)
set(L2 Libint2) # Namespace
set(pnv libint2) # projectnameversion
################################### Overview ###################################
# CMake build overview:
#
# >>> ls
# cmake/ COPYING src/ ...
# >>> cmake -S. -Bbuild -GNinja -DCMAKE_INSTALL_PREFIX=/path/to/install-libint ...
# ...
# -- Generating done
# -- Build files have been written to: /current/dir/build
# >>> cmake --build build --target install
# The Libint build is structured into three parts:
#
# * generator/compiler
# - (1) build src/bin/libint/ into compiler executable `build_libint`
# - pretty quick, runs in parallel
# - consumes all the enable/max/opt/orderings integral options
# - (2) optionally testable
# * export
# - (3) run `build_libint` to generate library source (C++) files (that upon
# compilation can become a Libint2 library) and combine them with other
# static source files in src/lib/libint/ and general static files (e.g.,
# include/ and docs/) into an independent tarball ready for distribution
# (with its own CMake configuration, tests, etc.).
# - really slow for non-trivial angular momenta; runs in serial
# - consumes no options
# - build target `export` to stop after this step and collect source tarball
# * library
# - can be built as a subproject (FetchContent) or completely insulated (bare
# ExternalProject; default; -or- a tarball start). For FetchContent, must
# build libint-library-export target before library build targets appear
# - (4) unpack the export tarball and build the library and install into \<build\>/library-install-stage/
# - duration depends on number of integrals requested; runs in parallel
# - consumes language-interface and the CMAKE_INSTALL_[DATA|INCLUDE|LIB]DIR paths options
# - the default build target includes this final library build
# - (5) optionally testable
# - (6) install into CMAKE_INSTALL_PREFIX
# - (7) optional Python build alongside library or afterwards. Optional testing requires library install
#################################### Guide #####################################
# See INSTALL.md for elaboration of steps above, options below, & translations from libtool.
################################### Options ####################################
# !!!!!! N.B. !!!!!!
# - all user-facing options are named LIBINT2_*
# - all internal variables are named LIBINT_*
include(options)
include(GNUInstallDirs)
include(CTest)
message(STATUS "Building using CMake ${CMAKE_VERSION} Generator ${CMAKE_GENERATOR}")
# <<< General >>>
option_with_default(CMAKE_BUILD_TYPE "Build type (Release or Debug)" Release)
### compiler-only
option_with_print(LIBINT2_BUILD_LIBRARY_AS_SUBPROJECT
"[EXPERT] Build generated library as a subproject: if FALSE will configure and build separately" OFF)
### library-only
option_with_print(LIBINT2_REQUIRE_CXX_API
"C++11 Libint API: define library targets + test (requires Eigen3, Boost is optional but strongly recommended)" ON)
option_with_print(LIBINT2_REQUIRE_CXX_API_COMPILED
"Build C++11 Compiled (not just header-only) targets (requires Eigen3, Boost strongly recommended)" ON)
option_with_print(LIBINT2_ENABLE_FORTRAN
"Build Fortran03+ Libint interface (requires Fortran)" OFF)
option_with_print(LIBINT2_ENABLE_PYTHON
"Build Python bindings (requires Python and Pybind11 and Eigen3)" OFF)
option_with_print(LIBINT2_PREFIX_PYTHON_INSTALL
"For LIBINT2_ENABLE_PYTHON=ON, whether to install the Python module in the Linux manner to CMAKE_INSTALL_PREFIX or to not install it. See target libint2-python-wheel for alternate installation in the Python manner to Python_EXECUTABLE's site-packages." OFF)
option_with_print(BUILD_SHARED_LIBS
"Build Libint library as shared, not static" OFF)
option_with_print(LIBINT2_BUILD_SHARED_AND_STATIC_LIBS
"Build both shared and static Libint libraries in one shot. Uses -fPIC." OFF)
option_with_print(LIBINT2_ENABLE_MPFR
"Use GNU MPFR library for high-precision testing (EXPERTS ONLY). Consumed at library build-time." OFF)
# <<< Which Integrals Classes, Which Derivative Levels >>>
option_with_default(LIBINT2_ENABLE_ONEBODY
"Compile with support for up to N-th derivatives of 1-body integrals (-1 for OFF)" 0)
option_with_default(LIBINT2_ENABLE_ERI
"Compile with support for up to N-th derivatives of 4-center electron repulsion integrals (-1 for OFF)" 0)
option_with_default(LIBINT2_ENABLE_ERI3
"Compile with support for up to N-th derivatives of 3-center electron repulsion integrals (-1 for OFF)" -1)
option_with_default(LIBINT2_ENABLE_ERI2
"Compile with support for up to N-th derivatives of 2-center electron repulsion integrals (-1 for OFF)" -1)
option_with_default(LIBINT2_ENABLE_G12
"Compile with support for N-th derivatives of MP2-F12 energies with Gaussian factors (-1 for OFF)" -1)
option_with_default(LIBINT2_ENABLE_G12DKH
"Compile with support for N-th derivatives of DKH-MP2-F12 energies with Gaussian factors (-1 for OFF)" -1)
option_with_print(LIBINT2_DISABLE_ONEBODY_PROPERTY_DERIVS
"Disable geometric derivatives of 1-body property integrals (all but overlap, kinetic, elecpot).
These derivatives are disabled by default to save compile time. (enable with OFF)
Note that the libtool build won't enable this- if forcibly enabled, build_libint balks." ON)
option_with_print(LIBINT2_ENABLE_T1G12
"Enable [Ti,G12] integrals when G12 integrals are enabled. Irrelevant when `LIBINT2_ENABLE_G12=OFF`. (disable with OFF)" ON)
# <<< Ordering Conventions >>>
option_with_default(LIBINT2_SHGAUSS_ORDERING
"Ordering for shells of solid harmonic Gaussians:
standard -- standard ordering (-l, -l+1 ... l)
gaussian -- the Gaussian ordering (0, 1, -1, 2, -2, ... l, -l)
See https://github.com/evaleev/libint/blob/master/INSTALL.md#solid-harmonic-ordering-scope-and-history ." standard)
option_with_default(LIBINT2_CARTGAUSS_ORDERING
"Orderings for shells of cartesian Gaussians:
standard -- standard ordering (xxx, xxy, xxz, xyy, xyz, xzz, yyy, ...)
intv3 -- intv3 ordering (yyy, yyz, yzz, zzz, xyy, xyz, xzz, xxy, xxz, xxx)
gamess -- GAMESS ordering (xxx, yyy, zzz, xxy, xxz, yyx, yyz, zzx, zzy, xyz)
orca -- ORCA ordering (hydrid between GAMESS and standard)
bagel -- axis-permuted version of intv3 (xxx, xxy, xyy, yyy, xxz, xyz, yyz, xzz, yzz, zzz)" standard)
option_with_default(LIBINT2_SHELL_SET
"Support computation of shell sets sets subject to these restrictions:
standard -- standard ordering:
for (ab|cd):
l(a) >= l(b),
l(c) >= l(d),
l(a)+l(b) <= l(c)+l(d)
for (b|cd):
l(c) >= l(d)
orca -- ORCA ordering:
for (ab|cd):
l(a) <= l(b),
l(c) <= l(d),
l(a) < l(c) || (l(a) == l(c) && l(b) < l(d))
for (b|cd):
l(c) <= l(d)" standard)
# <<< How High Angular Momentum >>>
# example for "semicolon-separated string": `-DLIBINT2_ENABLE_ERI3=2 -DLIBINT2_ERI3_MAX_AM="5;4;3"`
# special considerations for high-AM library builds:
# * high MAX_AM generates a large number of source files. If unity builds are disabled, more than
# ~20k files may require `ulimit -s 65535` for linking the library target on Linux to avert
# "ld: Argument list too long".
# * Ninja builds use beyond max threads and can run out of memory, resulting in errorless stops or
# "CMake Error: Generator: execution of make failed". Throttle it to physical threads with
# `export CMAKE_BUILD_PARALLEL_LEVEL=N`.
option_with_default(LIBINT2_MAX_AM
"Support Gaussians of angular momentum up to N.
Can specify values for each derivative level as a semicolon-separated string.
If ERI3 ints are enabled, this option also controls the AM of the paired centers." 4)
option_with_default(LIBINT2_OPT_AM
"Optimize maximally for up to angular momentum N (N <= max-am).
Can specify values for each derivative level as a semicolon-separated string. (default: (libint_max_am/2)+1)" -1)
option_with_default(LIBINT2_MULTIPOLE_MAX_ORDER
"Maximum order of spherical multipole integrals. There is no maximum" 4)
option_with_default(LIBINT2_ONEBODY_MAX_AM
"Support 1-body ints for Gaussians of angular momentum up to N.
Can specify values for each derivative level as a semicolon-separated string. (default: max_am)" -1)
option_with_default(LIBINT2_ONEBODY_OPT_AM
"Optimize 1-body ints maximally for up to angular momentum N (N <= max-am).
Can specify values for each derivative level as a semicolon-separated string (default: (max_am/2)+1)" -1)
option_with_default(LIBINT2_ERI_MAX_AM
"Support 4-center ERIs for Gaussians of angular momentum up to N.
Can specify values for each derivative level as a semicolon-separated string. (default: max_am)" -1)
option_with_default(LIBINT2_ERI_OPT_AM
"Optimize 4-center ERIs maximally for up to angular momentum N (N <= max-am).
Can specify values for each derivative level as a semicolon-separated string (default: (max_am/2)+1)" -1)
option_with_default(LIBINT2_ERI3_MAX_AM
"Support 3-center ERIs for Gaussians of angular momentum up to N.
Can specify values for each derivative level as a semicolon-separated string. (default: max_am)
This option controls only the single fitting center. The paired centers use LIBINT2_MAX_AM." -1)
option_with_default(LIBINT2_ERI3_OPT_AM
"Optimize 3-center ERIs maximally for up to angular momentum N (N <= max-am).
Can specify values for each derivative level as a semicolon-separated string. (default: (max_am/2)+1)" -1)
option_with_print(LIBINT2_ERI3_PURE_SH
"Assume the 'unpaired' center of 3-center ERIs will be transformed to pure solid harmonics" OFF)
option_with_default(LIBINT2_ERI2_MAX_AM
"Support 2-center ERIs for Gaussians of angular momentum up to N.
Can specify values for each derivative level as a semicolon-separated string. (default: max_am)" -1)
option_with_default(LIBINT2_ERI2_OPT_AM
"Optimize 2-center ERIs maximally for up to angular momentum N (N <= max-am).
Can specify values for each derivative level as a semicolon-separated string. (default: (max_am/2)+1)" -1)
option_with_print(LIBINT2_ERI2_PURE_SH
"Assume the 2-center ERIs will be transformed to pure solid harmonics" OFF)
option_with_default(LIBINT2_G12_MAX_AM
"Support integrals for G12 methods of angular momentum up to N. (default: max_am)" -1)
option_with_default(LIBINT2_G12_OPT_AM
"Optimize G12 integrals for up to angular momentum N (N <= max-am). (default: (max_am/2)+1)" -1)
option_with_default(LIBINT2_G12DKH_MAX_AM
"Support integrals for relativistic G12 methods of angular momentum up to N. (default: max_am)" -1)
option_with_default(LIBINT2_G12DKH_OPT_AM
"Optimize G12DKH integrals for up to angular momentum N (N <= max-am). (default: (max_am/2)+1)" -1)
# <<< Miscellaneous >>>
option_with_print(LIBINT2_CONTRACTED_INTS
"Turn on support for contracted integrals." ON)
option_with_default(LIBINT2_ERI_STRATEGY
"(EXPERT) Compute ERIs using the following strategy. (0 for OS, 1 for HGP, 2 for HL)" 1)
option_with_print(LIBINT2_USE_COMPOSITE_EVALUATORS
"Libint will use composite evaluators (i.e. every evaluator will compute one integral type only)" ON)
option_with_print(LIBINT2_SINGLE_EVALTYPE
"Generate single evaluator type (i.e. all tasks use the same evaluator). OFF is NYI" ON)
option_with_default(LIBINT2_ENABLE_UNROLLING
"Unroll shell sets into integrals (will unroll shell sets larger than N) (0 for never, N for N, 1000000000 for always)" 100)
option_with_default(LIBINT2_ALIGN_SIZE
"(EXPERT) if posix_memalign is available, this will specify alignment of Libint data, in units of
sizeof(LIBINT2_REALTYPE). Default is to use built-in heuristics: system-determined for vectorization off (default) or veclen * sizeof(LIBINT2_REALTYPE) for vectorization on." 0)
mark_as_advanced(LIBINT2_ALIGN_SIZE)
option_with_default(LIBINT2_REALTYPE
"Specifies the floating-point data type used by the library. Consumed at library build-time." double)
option_with_print(LIBINT2_USER_DEFINED_REAL_INCLUDES
"Additional #includes necessary to use the real type." OFF)
include(int_userreal)
option_with_print(LIBINT2_GENERATE_FMA
"Generate FMA (fused multiply-add) instructions (to benefit must have FMA-capable hardware and compiler)" OFF)
option_with_print(LIBINT2_ENABLE_GENERIC_CODE
"Use manually-written generic code" OFF)
option_with_default(LIBINT2_API_PREFIX
"Prepend this string to every name in the library API (except for the types)." "")
option_with_print(LIBINT2_VECTOR_LENGTH
"Compute integrals in vectors of length N." OFF)
option_with_default(LIBINT2_VECTOR_METHOD
"Specifies how to vectorize integrals. Irrelevant when `LIBINT2_VECTOR_LENGTH=OFF. Allowed values are 'block' (default), and 'line'." block)
option_with_print(LIBINT2_ACCUM_INTS
"Accumulate integrals to the buffer, rather than copy (OFF for copy, ON for accum)." OFF)
option_with_print(LIBINT2_FLOP_COUNT
"Support (approximate) FLOP counting by the library. (Generated code will require C++11!)" OFF)
option_with_print(LIBINT2_PROFILE
"Turn on profiling instrumentation of the library. (Generated code will require C++11!)" OFF)
option_with_print(LIBINT2_ENABLE_MPFR
"Use GNU MPFR library for high-precision testing (EXPERTS ONLY). Consumed at library build-time." OFF)
option_with_default(LIBINT2_EXPORT_COMPRESSOR
"Export tarball with compression gzip or bzip2" gzip)
# next one defined by `include(CTest)`
message(STATUS "Showing option BUILD_TESTING: ${BUILD_TESTING}")
# <<< Path >>>
######################## Process & Validate Options ###########################
include(autocmake_safeguards)
include(CheckFunctionExists)
include(CheckIncludeFileCXX)
include(FeatureSummary)
include(int_orderings)
include(int_am)
check_function_exists(posix_memalign HAVE_POSIX_MEMALIGN)
if (NOT HAVE_POSIX_MEMALIGN)
message(FATAL_ERROR "did not find posix_memalign ... this SHOULD NOT happen. Cannot proceed.")
endif()
check_include_file_cxx(stdint.h HAVE_STDINT_H) # limits.h?
if (cxx_std_11 IN_LIST CMAKE_CXX_COMPILE_FEATURES)
set(LIBINT_HAS_CXX11 1)
endif()
booleanize01(LIBINT2_ERI3_PURE_SH)
booleanize01(LIBINT2_ERI2_PURE_SH)
booleanize01(LIBINT2_USE_COMPOSITE_EVALUATORS)
booleanize01(LIBINT2_SINGLE_EVALTYPE)
booleanize01(LIBINT2_CONTRACTED_INTS)
booleanize01(LIBINT2_DISABLE_ONEBODY_PROPERTY_DERIVS)
booleanize01(LIBINT2_GENERATE_FMA)
booleanize01(LIBINT2_ENABLE_GENERIC_CODE)
booleanize01(LIBINT2_ENABLE_T1G12)
booleanize01(LIBINT2_ACCUM_INTS)
booleanize01(LIBINT2_FLOP_COUNT)
booleanize01(LIBINT2_PROFILE)
if (LIBINT2_EXPORT_COMPRESSOR STREQUAL "gzip")
set(LIBINT_EXPORT_COMPRESSOR_CMD "cfz")
set(LIBINT_EXPORT_COMPRESSOR_EXT "tgz")
elseif (LIBINT2_EXPORT_COMPRESSOR STREQUAL "xz")
set(LIBINT_EXPORT_COMPRESSOR_CMD "Jcf")
set(LIBINT_EXPORT_COMPRESSOR_EXT "tar.xz")
elseif (LIBINT2_EXPORT_COMPRESSOR STREQUAL "bzip2")
set(LIBINT_EXPORT_COMPRESSOR_CMD "jcf")
set(LIBINT_EXPORT_COMPRESSOR_EXT "tbz2")
else()
message(FATAL_ERROR "No valid compressor; invoke CMake with -DLIBINT2_EXPORT_COMPRESSOR=gzip|bzip2")
endif()
################################## Dependencies #################################
# See notes at https://github.com/evaleev/libint/blob/master/INSTALL.md#prerequisites
if (LIBINT2_ENABLE_MPFR)
# mpfr detected in CMakeLists.txt.export at appropriate time for library, but prechecking here
find_package(Multiprecision MODULE REQUIRED COMPONENTS gmpxx mpfr)
set(LIBINT_HAS_MPFR 1)
else()
find_package(Multiprecision MODULE REQUIRED COMPONENTS gmpxx)
endif()
get_property(_loc TARGET Multiprecision::gmp PROPERTY LOCATION)
message(VERBOSE "${Cyan}Found GMP${ColourReset}: ${_loc}")
get_property(_loc TARGET Multiprecision::gmpxx PROPERTY LOCATION)
message(VERBOSE "${Cyan}Found GMPXX${ColourReset}: ${_loc}")
if (TARGET Multiprecision::mpfr)
get_property(_loc TARGET Multiprecision::mpfr PROPERTY LOCATION)
message(VERBOSE "${Cyan}Found MPFR${ColourReset}: ${_loc} (found version ${MPFR_VERSION})")
endif()
find_package(Boost 1.57 REQUIRED)
if (TARGET Boost::headers)
set(LIBINT_HAS_SYSTEM_BOOST_PREPROCESSOR_VARIADICS 1)
endif()
# deferring find_package(Eigen3) to library (CMakeLists.txt.export)
################################## Main Project #################################
set(EXPORT_STAGE_DIR ${PROJECT_BINARY_DIR}/libint-${LIBINT_EXT_VERSION})
configure_file(
cmake/modules/int_computed.cmake.in
cmake/modules/int_computed.cmake
@ONLY)
# CMake data transmitted to C++ via config.h for generator/compiler (_EXPORT_MODE=0).
# Same info is positioned for the library export, but _EXPORT_MODE=1 turns on
# inclusion of config2.h to be filled in later by user re-set-able options at
# library build time.
set(_EXPORT_MODE 0)
# convert user-facing LIBINT2_ variables to LIBINT_ internal variables
foreach(_var API_PREFIX;ERI3_PURE_SH;ERI2_PURE_SH;DISABLE_ONEBODY_PROPERTY_DERIVS;ENABLE_UNROLLING;ENABLE_GENERIC_CODE;VECTOR_LENGTH;VECTOR_METHOD;ALIGN_SIZE;USER_DEFINED_REAL;USER_DEFINED_REAL_INCLUDES;GENERATE_FMA;ACCUM_INTS;FLOP_COUNT;PROFILE;CONTRACTED_INTS;SINGLE_EVALTYPE;USE_COMPOSITE_EVALUATORS;ERI_STRATEGY;MULTIPOLE_MAX_ORDER)
if (DEFINED LIBINT2_${_var})
if (DEFINED LIBINT_${_var})
message(FATAL_ERROR "renaming user-facing LIBINT2_${_var} variable but internal variable LIBINT_${_var} already exists")
else ()
set(LIBINT_${_var} ${LIBINT2_${_var}})
endif()
endif()
endforeach ()
configure_file(
include/libint2/config.h.cmake.in
include/libint2/config.h
@ONLY)
set(_EXPORT_MODE 1)
configure_file(
include/libint2/config.h.cmake.in
${EXPORT_STAGE_DIR}/include/libint2/config.h
@ONLY)
configure_file(
include/libint2/config2.h.cmake.in
${EXPORT_STAGE_DIR}/include/libint2/config2.h.cmake.in
COPYONLY)
add_subdirectory(src)
message("")
feature_summary(WHAT ENABLED_FEATURES DESCRIPTION "Libint Enabled features:")
feature_summary(WHAT DISABLED_FEATURES DESCRIPTION "Libint Disabled features:")