AYON Usd Resolver  0.1.0
Loading...
Searching...
No Matches
devMacros.h
Go to the documentation of this file.
1#ifndef DEV_MACRO_H
2#define DEV_MACRO_H
3
4#if DEV == 1
5 #include <cstdlib> // For getenv function
6 #define AYON_LOCAL_TEST_POINT "AYON_LOCAL_TEST_POINT"
7 #define DEV_SWITCH(x, y) std::getenv(x)
8#else
9 #define AYON_LOCAL_TEST_POINT ""
10 #define DEV_SWITCH(x, y) y
11#endif
12
13#endif // DEV_MACRO_H