IODA Bundle
config.h
Go to the documentation of this file.
1 #pragma once
2 /*
3  * (C) Copyright 2020-2021 UCAR
4  *
5  * This software is licensed under the terms of the Apache Licence Version 2.0
6  * which can be obtained at http://www.apache.org/licenses/LICENSE-2.0.
7  */
8 
9 /// \file ioda_config.h
10 /// \brief Build-time configuration settings for IODA.
11 
12 // ioda-engines version
13 #define IODA_ENGINES_MAJOR 2
14 #define IODA_ENGINES_MINOR 0
15 #define IODA_ENGINES_REVISION 0
16 #define IODA_ENGINES_TWEAK 0
17 #define IODA_ENGINES_VERSION "2.0.0.0"
18 
19 
20 // Package build options
21 // Used to enable-disable code in factory methods.
22 
23 #define Boost_FOUND 1
24 #define eckit_FOUND 1
25 #define Eigen3_FOUND 1
26 #define HDF5_FOUND 1
27 #define odc_FOUND 1
28 #define oops_FOUND 1
29 #define Python3_FOUND 1
30 #define pybind11_FOUND 1