ruohoruotsi / Butterworth-Filter-Design

C++ classes for designing high-order Butterworth IIR & equalization filters
GNU General Public License v3.0
172 stars 44 forks source link

Move to a platform independent build system #7

Open ruohoruotsi opened 5 years ago

ruohoruotsi commented 5 years ago

Migrate build system away from an XCode-based project (MacOS only) to something more platform independent like SCONS or CMake.

ruohoruotsi commented 5 years ago

Don't forget to clean up XCode project and update README on how to build and run.

ruohoruotsi commented 5 years ago

We have SCONS, XCode, all we need now is a CMake and this should be complete.

ruohoruotsi commented 5 years ago

bd0f4b80217882bbd92296b01cfc4ed334591f61 (old "no longer working" XCode removal) -- really we should also support xcodebuild as well

yangbo commented 11 months ago

Hi ruohoruotsi, I have forked your work and add CMake support to it. The repo is https://github.com/yangbo/Butterworth-Filter-Design. In addition, I add a function sos2tf() to convert the SOS form to Transfer Function coefficients like matlab's sos2tf() function.

Cheers!