2018-05-02 20:02:28 +00:00
|
|
|
/* Cable: CMake Bootstrap Library.
|
|
|
|
* Copyright 2018 Pawel Bylica.
|
|
|
|
* Licensed under the Apache License, Version 2.0. See the LICENSE file.
|
|
|
|
*/
|
2018-04-10 14:28:36 +00:00
|
|
|
|
2018-05-02 20:02:28 +00:00
|
|
|
/* Generated by Cable Build Info on @TIMESTAMP@. Do not modify directly. */
|
2018-04-10 14:28:36 +00:00
|
|
|
|
2018-07-26 07:51:52 +00:00
|
|
|
#include "buildinfo.h"
|
2018-04-10 14:28:36 +00:00
|
|
|
|
|
|
|
const struct buildinfo* @FUNCTION_NAME@()
|
|
|
|
{
|
|
|
|
static const struct buildinfo buildinfo = {
|
2018-07-26 07:51:52 +00:00
|
|
|
.project_name = "@PROJECT_NAME@",
|
2018-04-10 14:28:36 +00:00
|
|
|
.project_version = "@PROJECT_VERSION@",
|
2018-07-26 07:51:52 +00:00
|
|
|
.project_name_with_version = "@PROJECT_NAME@-@PROJECT_VERSION@",
|
2018-05-02 20:02:28 +00:00
|
|
|
.git_commit_hash = "@GIT_COMMIT_HASH@",
|
2018-04-10 14:28:36 +00:00
|
|
|
.system_name = "@SYSTEM_NAME@",
|
2018-05-02 20:02:28 +00:00
|
|
|
.system_processor = "@SYSTEM_PROCESSOR@",
|
2018-04-10 14:28:36 +00:00
|
|
|
.compiler_id = "@COMPILER_ID@",
|
|
|
|
.compiler_version = "@COMPILER_VERSION@",
|
|
|
|
.build_type = "@BUILD_TYPE@",
|
|
|
|
};
|
|
|
|
return &buildinfo;
|
|
|
|
}
|