forked from 4paradigm/OpenMLDB
-
Notifications
You must be signed in to change notification settings - Fork 0
/
version.h.in
27 lines (23 loc) · 949 Bytes
/
version.h.in
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
/*
* Copyright 2021 4Paradigm
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#ifndef OPENMLDB_VERSION_H
#define OPENMLDB_VERSION_H
#define OPENMLDB_VERSION_MAJOR @OPENMLDB_VERSION_MAJOR@
#define OPENMLDB_VERSION_MINOR @OPENMLDB_VERSION_MINOR@
#define OPENMLDB_VERSION_BUG @OPENMLDB_VERSION_BUG@
const std::string OPENMLDB_COMMIT_ID = "@OPENMLDB_COMMIT_ID@";
#endif /* !VERSION_H */
/* vim: set expandtab ts=2 sw=2 sts=2 tw=100: */