mirror of
https://github.com/kidfromjupiter/nearby.git
synced 2026-09-15 07:06:11 -04:00
Signed-off-by: Alexey Polyudov <apolyudov@google.com> Change-Id: I2cf5bf225b76f4c1541954651f3a7544a14e0cec
23 lines
558 B
C
23 lines
558 B
C
#ifndef PLATFORM_PORT_CONFIG_H_
|
|
#define PLATFORM_PORT_CONFIG_H_
|
|
|
|
// Clients can modify this file to customize the Nearby C++ codebase as per
|
|
// their particular constraints and environments.
|
|
|
|
// Note: Every entry in this file should conform to the following format, to
|
|
// give precedence to command-line options (-D) that set these symbols:
|
|
//
|
|
// #ifndef XXX
|
|
// #define XXX 0/1
|
|
// #endif
|
|
|
|
#ifndef NEARBY_USE_STD_STRING
|
|
#define NEARBY_USE_STD_STRING 0
|
|
#endif
|
|
|
|
#ifndef NEARBY_USE_RTTI
|
|
#define NEARBY_USE_RTTI 1
|
|
#endif
|
|
|
|
#endif // PLATFORM_PORT_CONFIG_H_
|