https://github.com/Kitware/CMake
Raw File
Tip revision: 8c89b5e2dcab146557c6eac0c32e2ab813ae6428 authored by Bill Hoffman on 26 February 2010, 18:45:23 UTC
CMake 2.8.1
Tip revision: 8c89b5e
preprocess.h.in
/* Define configured macros.  */
#define STRING_VALUE "@STRING_VALUE@"
#define EXPR @EXPR@
#cmakedefine PREPROCESS_XCODE
#cmakedefine PREPROCESS_VS6

#ifdef PREPROCESS_VS6
# define FILE_PATH "@FILE_PATH@"
# define TARGET_PATH "@TARGET_PATH@"
#endif

/* Declarations and macros shared by all sources.  */
#define TO_STRING(x) TO_STRING0(x)
#define TO_STRING0(x) #x

static int f(int i) { return i*3; }
back to top