GA::kit v0.3
G&A's in-house C++ application framework
Loading...
Searching...
No Matches
defines.h
Go to the documentation of this file.
1
2#define GA_OPENFRAMEWORKS
3// #define GA_CINDER
4
5// This enables glm's old behavior of initializing with non garbage values
6// see openFrameworks issue #6530: https://github.com/openframeworks/openFrameworks/issues/6530
7#define GLM_FORCE_CTOR_INIT
8
9// -----------------------
10// MACROS FOR CONVENIENCE:
11// ---- DO NOT ADJUST ----
12
13#define CLASS_INHERITS( TYPE, BASE ) class TYPE, typename = std::enable_if_t<std::is_base_of<BASE, TYPE>::value>