1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-07-16 22:28:57 +00:00

Merge pull request #798 from qeeg/master

Fix Windows MSYS2 build (mostly)
This commit is contained in:
Thomas Harte 2020-05-27 21:52:49 -04:00 committed by GitHub
commit a9de745e51
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 8 additions and 0 deletions

View File

@ -10,6 +10,10 @@
#include <cmath>
#ifndef M_PI
#define M_PI 3.1415926f
#endif
using namespace Outputs::Display::OpenGL;
// MARK: - State setup for compiled shaders.

View File

@ -9,6 +9,10 @@
#include "FIRFilter.hpp"
#include <cmath>
#ifndef M_PI
#define M_PI 3.1415926f
#endif
using namespace SignalProcessing;
/*