mirror of
https://github.com/status-im/evmc.git
synced 2025-02-24 00:48:09 +00:00
5fd6d89 Add powerpc64 toolchain file bd3d25d Add README 1a3081d Add correct project modules dir to CMake path 34d7914 Add cable_log() and cable_debug() f0fe702 Fix gitinfo when git describe fails to find any version tag 4c742d9 gitinfo: Extend with git describe 28c3d66 cable_configure_compiler: Add option to disable stack protection git-subtree-dir: cmake/cable git-subtree-split: 5fd6d89e7ed8f5e32c8e32168207dcf4f09b714d
31 lines
591 B
C
31 lines
591 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_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
|