1
0
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:
Thomas Harte
2020-05-30 00:37:06 -04:00
parent 743353a0ed
commit 267006782f
92 changed files with 395 additions and 179 deletions

View File

@@ -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