evmc/buildinfo/buildinfo.h.in
Paweł Bylica ecd18a29e5 Squashed 'cmake/cable/' changes from d7bbd20..5fd6d89
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
2018-05-02 22:02:28 +02:00

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