diff options
author | chai <chaifix@163.com> | 2018-07-26 17:28:08 +0800 |
---|---|---|
committer | chai <chaifix@163.com> | 2018-07-26 17:28:08 +0800 |
commit | 977b845c3e09a5b51895be81ef7514ae4030f588 (patch) | |
tree | b31c37b0b2d2e0344cf798bbf8e761c36850764d /src/libjin/render/graphics.cpp | |
parent | a4c474808273501baff57455dbef7879896e9a8d (diff) |
*条件编译
Diffstat (limited to 'src/libjin/render/graphics.cpp')
-rw-r--r-- | src/libjin/render/graphics.cpp | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/libjin/render/graphics.cpp b/src/libjin/render/graphics.cpp index a4ccd66..f54021b 100644 --- a/src/libjin/render/graphics.cpp +++ b/src/libjin/render/graphics.cpp @@ -1,4 +1,7 @@ -#include "graphics.h" +#include "../modules.h" +#if JIN_MODULES_RENDER + +#include "graphics.h" #include "../math/matrix.h" #include "../math/constant.h" #include <string> @@ -114,3 +117,5 @@ namespace render } } + +#endif // JIN_MODULES_RENDER
\ No newline at end of file |