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
33 lines
664 B
C
33 lines
664 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. */
|
|
|
|
#pragma once
|
|
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
{
|
|
#endif
|
|
|
|
struct buildinfo
|
|
{
|
|
const char* project_name;
|
|
const char* project_version;
|
|
const char* project_name_with_version;
|
|
const char* git_commit_hash;
|
|
const char* system_name;
|
|
const char* system_processor;
|
|
const char* compiler_id;
|
|
const char* compiler_version;
|
|
const char* build_type;
|
|
};
|
|
|
|
const struct buildinfo* @FUNCTION_NAME@();
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|