mirror of
https://github.com/status-im/evmc.git
synced 2025-02-24 08:58:12 +00:00
36b6cb6 Cable 0.2.6 f74ad95 buildinfo: Clean up output directory 6babdd4 buildinfo: Export some information for shell scripts ceb5964 Cable 0.2.5: Extend buildinfo with project name 28805f8 Cable 0.2.4: Fix --coverage detection 268fdf7 CompilerSettings: Fix error message for unsupported --coverage 75766fd Git ignore CLion files cbca43b Cable 0.2.3: Allow loading toolchain files from outside of cable dir git-subtree-dir: cmake/cable git-subtree-split: 36b6cb6929d1f309700f7eaf7ae02e8c6910bd76
25 lines
799 B
C
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;
|
|
}
|