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 // pch.h: This is a precompiled header file.
2 // Files listed below are compiled only once, improving build performance for future builds.
3 // This also affects IntelliSense performance, including code completion and many code browsing features.
4 // However, files listed here are ALL re-compiled if any one of them is updated between builds.
5 // Do not add files here that you will be updating frequently as this negates the performance advantage.
6 
7 #ifndef PCH_H
8 #define PCH_H
9 #pragma once
10 
11 #define USE_UNICODE 0 // Why does UNICODE get flipped on ??
12 #define USE_UNITTESTS_MS
13 
14 #ifndef GRAYCORE_TEST_LINK
15 #if defined(_MFC_VER) || defined(GRAY_STATICLIB) // GRAY_STATICLIB or _MFC_VER can be defined to make Gray* all static lib
16 #define GRAYCORE_TEST_LINK // not in a DLL
17 #else
18 #define GRAYCORE_TEST_LINK __DECL_EXPORT
19 #endif
20 #endif
21 
22 // add headers that you want to pre-compile here
23 #include "cUnitTestMs.h"
24 
25 #endif // PCH_H