mirror of
https://github.com/reactos/CMake.git
synced 2025-02-02 01:55:03 +00:00
b42866a34a
This generator has been deprecated since CMake 3.3. Remove it. Update documentation, modules, and tests to drop content specific to this generator.
11 lines
273 B
C
11 lines
273 B
C
/* Define configured macros. */
|
|
#define STRING_VALUE "@STRING_VALUE@"
|
|
#define EXPR @EXPR@
|
|
#cmakedefine PREPROCESS_XCODE
|
|
|
|
/* 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; }
|