https://github.com/anthonix/ffts
brew install cmake
mkdir build
change CMakefile.txt:
option(ENABLE_SHARED
"Enable building a shared library." ON
)
option(ENABLE_STATIC
"Enable building a static library." OFF
)
cd build
cmake ..
make
sudo make install
评论