Gray C++ Libraries  0.0.2
A set of C++ libraries for MSVC, GNU on Windows, WinCE, Linux
pch.h
Go to the documentation of this file.
1 //
6 //
7 #ifndef _INC_pch_H
8 #define _INC_pch_H
9 #ifndef NO_PRAGMA_ONCE
10 #pragma once
11 #endif
12 
14 #include "cJSObject.h"
15 
16 #ifndef GRAYJS_LINK
17 #if defined(_MFC_VER) || defined(GRAY_STATICLIB) // GRAY_STATICLIB or _MFC_VER can be defined to make Gray* all static lib
18 #define GRAYJS_LINK
19 #else
20 #define GRAYJS_LINK __DECL_EXPORT
21 #endif
22 #endif
23 
24 #endif