FNFT
fnft_config.h
1 /*
2  * This file is part of FNFT.
3  *
4  * FNFT is free software; you can redistribute it and/or
5  * modify it under the terms of the version 2 of the GNU General
6  * Public License as published by the Free Software Foundation.
7  *
8  * FNFT is distributed in the hope that it will be useful,
9  * but WITHOUT ANY WARRANTY; without even the implied warranty of
10  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11  * GNU General Public License for more details.
12  *
13  * You should have received a copy of the GNU General Public License
14  * along with this program. If not, see <http://www.gnu.org/licenses/>.
15  *
16  * Contributors:
17  * Sander Wahls (TU Delft) 2017-2018.
18  */
19 
20 #ifndef FNFT_CONFIG_H
21 #define FNFT_CONFIG_H
22 
23 #define FNFT_VERSION_MAJOR 0
24 #define FNFT_VERSION_MINOR 2
25 #define FNFT_VERSION_PATCH 2
26 #define FNFT_VERSION_SUFFIX ""
27 // The suffix should not exceed the length defined below (not counting the NULL
28 // termination symbol)
29 #define FNFT_VERSION_SUFFIX_MAXLEN 8
30 
31 /* #undef HAVE__THREAD_LOCAL */
32 #define HAVE___THREAD 1
33 /* #undef DEBUG */
34 #define HAVE_FFTW3 1
35 
36 #endif