2013-10-16 23:59:46 +02:00
|
|
|
// Copyright (c) 2013, Facebook, Inc. All rights reserved.
|
|
|
|
// This source code is licensed under the BSD-style license found in the
|
|
|
|
// LICENSE file in the root directory of this source tree. An additional grant
|
|
|
|
// of patent rights can be found in the PATENTS file in the same directory.
|
|
|
|
//
|
2013-10-05 07:32:05 +02:00
|
|
|
#pragma once
|
2014-04-11 19:54:47 +02:00
|
|
|
#if !defined(IOS_CROSS_COMPILE)
|
|
|
|
// if we compile with Xcode, we don't run build_detect_vesion, so we don't
|
|
|
|
// generate these variables
|
2012-08-21 09:33:21 +02:00
|
|
|
// these variables tell us about the git config and time
|
2013-10-05 07:32:05 +02:00
|
|
|
extern const char* rocksdb_build_git_sha;
|
2012-08-21 09:33:21 +02:00
|
|
|
|
2013-11-16 12:21:34 +01:00
|
|
|
// these variables tell us when the compilation occurred
|
2013-10-05 07:32:05 +02:00
|
|
|
extern const char* rocksdb_build_compile_time;
|
|
|
|
extern const char* rocksdb_build_compile_date;
|
2014-04-11 19:54:47 +02:00
|
|
|
#endif
|