mirror of
https://github.com/TomHarte/CLK.git
synced 2025-07-24 22:24:23 +00:00
Starts to add Qt target; resolves many build warnings.
This commit is contained in:
@@ -9,7 +9,10 @@
|
||||
#ifndef FIRFilter_hpp
|
||||
#define FIRFilter_hpp
|
||||
|
||||
#ifdef __APPLE__
|
||||
// Use the Accelerate framework to vectorise, unless this is a Qt build.
|
||||
// Primarily that avoids gymnastics in the QMake file; it also eliminates
|
||||
// a difference in the Qt build across platforms.
|
||||
#if defined(__APPLE__) && !defined(QT_VERSION)
|
||||
#include <Accelerate/Accelerate.h>
|
||||
#define USE_ACCELERATE
|
||||
#endif
|
||||
|
Reference in New Issue
Block a user