-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCMakeLists.txt
136 lines (116 loc) · 3.44 KB
/
CMakeLists.txt
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
cmake_minimum_required(VERSION 2.6)
project(libbench2 C)
# default build type is Debug which means no optimization
if(NOT CMAKE_BUILD_TYPE)
set(CMAKE_BUILD_TYPE "Release")
endif(NOT CMAKE_BUILD_TYPE)
# if none of these options are enable, default is double precision.
option(BENCHFFT_LDOUBLE
"Define to compile in long-double precision." OFF
)
option(BENCHFFT_QUAD
"Define to compile in quad precision." OFF
)
option(BENCHFFT_SINGLE
"Define to compile in single precision." OFF
)
include(CheckIncludeFile)
include(CheckFunctionExists)
include(CheckLibraryExists)
include(CheckSymbolExists)
if(MSVC)
# use our aligned malloc/free for 32 bit Windows
if(CMAKE_SIZEOF_VOID_P EQUAL 4)
add_definitions(-DWITH_OUR_MALLOC)
endif()
add_definitions(-D_CRT_SECURE_NO_WARNINGS)
add_definitions(-D_USE_MATH_DEFINES)
else()
# some systems need libm for some of the math functions to work
check_library_exists(m cos "" HAVE_LIBM)
if(HAVE_LIBM)
list(APPEND CMAKE_REQUIRED_LIBRARIES m)
list(APPEND LIBBENCH2_EXTRA_LIBRARIES m)
endif(HAVE_LIBM)
endif(MSVC)
check_include_file(malloc.h HAVE_MALLOC_H)
check_include_file(stdarg.h HAVE_STDARG_H)
check_include_file(stddef.h HAVE_STDDEF_H)
check_include_file(stdlib.h HAVE_STDLIB_H)
check_include_file(string.h HAVE_STRING_H)
check_include_file(sys/time.h HAVE_SYS_TIME_H)
if(HAVE_SYS_TIME_H)
list(APPEND CMAKE_REQUIRED_INCLUDES sys/time.h)
endif()
check_include_file(unistd.h HAVE_UNISTD_H)
check_symbol_exists(cosl math.h HAVE_DECL_COSL)
check_symbol_exists(srand48 stdlib.h HAVE_DECL_SRAND48)
check_symbol_exists(drand48 stdlib.h HAVE_DECL_DRAND48)
check_symbol_exists(memalign malloc.h HAVE_DECL_MEMALIGN)
check_symbol_exists(posix_memalign stdlib.h HAVE_DECL_POSIX_MEMALIGN)
check_function_exists(cosl HAVE_COSL)
check_function_exists(drand48 HAVE_DRAND48)
check_function_exists(gettimeofday HAVE_GETTIMEOFDAY)
check_function_exists(memalign HAVE_MEMALIGN)
check_function_exists(posix_memalign HAVE_POSIX_MEMALIGN)
if(BENCHFFT_QUAD AND NOT HAVE_LIBQUADMATH)
message(WARNING "Failed to enable compile in quad precision, using long-double precision instead.")
set(BENCHFFT_QUAD OFF)
set(BENCHFFT_LDOUBLE ON)
endif(BENCHFFT_QUAD AND NOT HAVE_LIBQUADMATH)
if(BENCHFFT_LDOUBLE AND NOT HAVE_COSL)
message(WARNING "Failed to enable compile in long-double precision instead, using double precision instead.")
set(BENCHFFT_LDOUBLE OFF)
endif(BENCHFFT_LDOUBLE AND NOT HAVE_COSL)
set(LIBBENCH2_SOURCES
after-ccopy-from.c
after-ccopy-to.c
after-hccopy-from.c
after-hccopy-to.c
after-rcopy-from.c
after-rcopy-to.c
allocate.c
aset.c
bench-cost-postprocess.c
bench-exit.c
bench-main.c
bench-user.h
bench.h
can-do.c
caset.c
dotens2.c
info.c
main.c
mflops.c
mp.c
my-getopt.c
my-getopt.h
ovtpvt.c
pow2.c
problem.c
report.c
speed.c
tensor.c
timer.c
useropt.c
util.c
verify-dft.c
verify-lib.c
verify-r2r.c
verify-rdft2.c
verify.c
verify.h
zero.c
)
# Generate the configure headers.
# (Place them in the build dir so we don't polute the source tree with generated files).
include_directories(BEFORE ${CMAKE_CURRENT_BINARY_DIR}/include/libbench2)
configure_file(
${CMAKE_CURRENT_SOURCE_DIR}/cmake/libbench2-config.h.cmake
${CMAKE_CURRENT_BINARY_DIR}/include/libbench2/config.h)
add_library(libbench2_static
${LIBBENCH2_SOURCES}
)
target_link_libraries(libbench2_static
${LIBBENCH2_EXTRA_LIBRARIES}
)