evmc/buildinfo/buildinfo.c.in

25 lines
799 B
C

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