comparison src/fft.h @ 211:ef80f7c52c6d

add VC2012 project to compile static and dynamic lib, also fix some C issues
author Q <andrea@nocte.co.uk>
date Thu, 27 Mar 2014 09:48:26 +0000
parents 826eb46b2f91
children 2d749a837036
comparison
equal deleted inserted replaced
210:c99c00e1c508 211:ef80f7c52c6d
26 26
27 #ifdef HAVE_CONFIG_H 27 #ifdef HAVE_CONFIG_H
28 #include <config.h> 28 #include <config.h>
29 #endif 29 #endif
30 30
31 #include <stdbool.h> 31 #ifdef _MSC_VER
32 #define USE_OOURA
33 #ifndef __cplusplus
34 typedef int bool;
35 #define false 0
36 #define true 1
37 #endif
38 #else
39 #include <stdbool.h>
40 #endif
32 41
33 #ifdef USE_OOURA 42 #ifdef USE_OOURA
34 #include "ooura/fftsg.h" 43 #include "ooura/fftsg.h"
35 #else 44 #else
36 #include <Accelerate/Accelerate.h> 45 #include <Accelerate/Accelerate.h>