summaryrefslogtreecommitdiffstats
path: root/CMakeLists.txt
blob: 74847fb83f0df5c70211f97e665fd6e8cd0257e5 (plain)
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
cmake_minimum_required(VERSION 2.8)

project(ffts C ASM)

set(CMAKE_MODULE_PATH ${CMAKE_CURRENT_SOURCE_DIR}/cmake)
set_property(GLOBAL PROPERTY USE_FOLDERS ON)

# default build type is Debug which means no optimization
if(NOT CMAKE_BUILD_TYPE)
  set(CMAKE_BUILD_TYPE "Release")
endif(NOT CMAKE_BUILD_TYPE)

# common options
option(ENABLE_SSE
  "Enables the use of SSE instructions." ON
)

option(ENABLE_NEON
  "Enables the use of NEON instructions." OFF
)

option(ENABLE_VFP
  "Enables the use of VFP instructions." OFF
)

option(DISABLE_DYNAMIC_CODE
  "Disables the use of dynamic machine code generation." OFF
)

option(ENABLE_SHARED
  "Enable building a shared library." OFF
)

option(ENABLE_YASM_COMPILE
  "Enables compiling with YASM for Windows." OFF
)

add_definitions(-DFFTS_CMAKE_GENERATED)

if(MSVC)
  # enable all warnings but also disable some..
  set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} /W4 /wd4127")

  add_definitions(-D_USE_MATH_DEFINES)
endif(MSVC)

# GCC specific options
if(CMAKE_COMPILER_IS_GNUCC)
  include(CheckIncludeFile)
  include(CheckLibraryExists)
  
  # enable all warnings
  set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wall -Wextra")
  
  # some systems need libm for some of the math functions to work
  check_library_exists(m pow "" HAVE_LIBM)
  if(HAVE_LIBM)
    list(APPEND CMAKE_REQUIRED_LIBRARIES m)
    list(APPEND FFTS_EXTRA_LIBRARIES m)
  endif(HAVE_LIBM)
endif(CMAKE_COMPILER_IS_GNUCC)

include_directories(include)
include_directories(src)
include_directories(${CMAKE_CURRENT_BINARY_DIR})

set(FFTS_HEADERS
  include/ffts.h
)

set(FFTS_SOURCES
  src/ffts_attributes.h
  src/ffts.c
  src/ffts_internal.h
  src/ffts_nd.c
  src/ffts_nd.h
  src/ffts_real.h
  src/ffts_real.c  
  src/ffts_real_nd.c
  src/ffts_real_nd.h
  src/ffts_small.c
  src/ffts_small.h
  src/macros.h
  src/patterns.c
  src/patterns.h
  src/types.h
)

if(ENABLE_SSE)
  add_definitions(-DHAVE_SSE)
  add_definitions(-D__x86_64__)

  list(APPEND FFTS_SOURCES
    src/macros-sse.h
  )

  if(MSVC)
    if(ENABLE_YASM_COMPILE)
      set(CMAKE_ASM-ATT_COMPILER yasm)
      enable_language(ASM-ATT)

      add_custom_command(
        OUTPUT sse_win64.obj
        COMMAND ${CMAKE_ASM-ATT_COMPILER} -f win64 -m amd64
        -o ${CMAKE_CURRENT_BINARY_DIR}/sse_win64.obj -p gas
        ${CMAKE_CURRENT_SOURCE_DIR}/src/sse_win64.s
        DEPENDS ${CMAKE_CURRENT_SOURCE_DIR}/src/sse_win64.s
        WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}
        COMMENT "Generating sse_win64.obj"
      )
      
      list(APPEND FFTS_SOURCES
        ${CMAKE_CURRENT_BINARY_DIR}/sse_win64.obj
        src/sse_win64.s
      )
    else()
      add_definitions(-DSSE_DEFINE_CONSTANTS)    
    endif(ENABLE_YASM_COMPILE)
  else()
    list(APPEND FFTS_SOURCES
      src/sse.s
    )
  else()
    add_definitions(-msse2)
  endif(MSVC)
endif()

if(ENABLE_NEON)
  if(DISABLE_DYNAMIC_CODE)
    list(APPEND FFTS_SOURCES
      source/neon_static_f.s
      source/neon_static_i.s
    )
  else()
    list(APPEND FFTS_SOURCES
      source/neon.s
      source/arch/neon.c
    )
  endif()

  add_definitions(-DHAVE_NEON)
endif()

if(ENABLE_VFP)
  list(APPEND FFTS_SOURCES
    source/vfp.s
    source/arch/vfp.c
  )

  add_definitions(-DHAVE_VFP)
endif()

if(ENABLE_SINGLE)
  add_definitions(-DHAVE_SINGLE)
endif()

if(DISABLE_DYNAMIC_CODE)
  list(APPEND FFTS_SOURCES
    src/ffts_static.c
  )

  add_definitions(-DDYNAMIC_DISABLED)
else()
  list(APPEND FFTS_SOURCES
    src/codegen.c
    src/codegen.h
  )
  
  if(ENABLE_SSE)
    list(APPEND FFTS_SOURCES
      src/codegen_sse.h
    )
  endif(ENABLE_SSE)
endif()

add_library(ffts_static
  ${FFTS_HEADERS}
  ${FFTS_SOURCES}
)

add_executable(ffts_test
  tests/test.c
)

target_link_libraries(ffts_test
  ffts_static
  ${FFTS_EXTRA_LIBRARIES}
)
OpenPOWER on IntegriCloud