STYLE: Nightly Date Stamp
[cmake.git] / Tests / Preprocess / preprocess.h.in
blob3e1c7a07ae1c55e3164b6ec624ddcdb0519571ab
1 /* Define configured macros. */
2 #define STRING_VALUE "@STRING_VALUE@"
3 #define EXPR @EXPR@
4 #cmakedefine PREPROCESS_XCODE
5 #cmakedefine PREPROCESS_VS6
7 #ifdef PREPROCESS_VS6
8 # define FILE_PATH "@FILE_PATH@"
9 # define TARGET_PATH "@TARGET_PATH@"
10 #endif
12 /* Declarations and macros shared by all sources. */
13 #define TO_STRING(x) TO_STRING0(x)
14 #define TO_STRING0(x) #x
16 static int f(int i) { return i*3; }