1
0
mirror of https://github.com/TomHarte/CLK.git synced 2025-09-26 01:16:29 +00:00

Advances to actually completing a build.

Many more warnings to iron out, however.
This commit is contained in:
Thomas Harte
2020-05-30 00:47:43 -04:00
parent 267006782f
commit 0bf7de9d43
6 changed files with 10 additions and 8 deletions

View File

@@ -12,7 +12,7 @@
// 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)
#if defined(__APPLE__) && !defined(TARGET_QT)
#include <Accelerate/Accelerate.h>
#define USE_ACCELERATE
#endif