preprocess.h.in 401 B

12345678910111213141516
  1. /* Define configured macros. */
  2. #define STRING_VALUE "@STRING_VALUE@"
  3. #define EXPR @EXPR@
  4. #cmakedefine PREPROCESS_XCODE
  5. #cmakedefine PREPROCESS_VS6
  6. #ifdef PREPROCESS_VS6
  7. # define FILE_PATH "@FILE_PATH@"
  8. # define TARGET_PATH "@TARGET_PATH@"
  9. #endif
  10. /* Declarations and macros shared by all sources. */
  11. #define TO_STRING(x) TO_STRING0(x)
  12. #define TO_STRING0(x) #x
  13. static int f(int i) { return i*3; }