evmc/buildinfo/buildinfo.c.in

21 lines
638 B
C

// 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 "@NAME@.h"
const struct buildinfo* @FUNCTION_NAME@()
{
static const struct buildinfo buildinfo = {
.project_version = "@PROJECT_VERSION@",
.system_name = "@SYSTEM_NAME@",
.system_processor = "@SYSTEM_PROCESSOR",
.compiler_id = "@COMPILER_ID@",
.compiler_version = "@COMPILER_VERSION@",
.build_type = "@BUILD_TYPE@",
.git_commit_hash = "@GIT_COMMIT_HASH@",
};
return &buildinfo;
}