evmc/cmake/cable/buildinfo/buildinfo.c.in
Paweł Bylica 535db81347
Add Cable as git subtree
Merge commit '553d384123053f43ac78dbfb7203c5452605f6e6' as 'cmake/cable'
2018-04-10 16:32:17 +02:00

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;
}