mirror of
https://github.com/nodejs/node-v0.x-archive.git
synced 2026-04-28 03:01:10 -04:00
13 lines
277 B
C
13 lines
277 B
C
#ifndef node_version_h
|
|
#define node_version_h
|
|
|
|
#ifdef NDEBUG
|
|
# define NODE_VERSION "@VERSION@"
|
|
#else
|
|
# define NODE_VERSION "@VERSION@ (debug)"
|
|
#endif
|
|
#define NODE_CFLAGS "@CCFLAGS@ @CPPFLAGS@ -I@PREFIX@/include/node"
|
|
#define NODE_PREFIX "@PREFIX@"
|
|
|
|
#endif /* node_version_h */
|