evmc/examples/use_evmc_in_cmake/use_evmc_in_cmake.c

15 lines
370 B
C
Raw Normal View History

2018-06-19 09:38:08 +00:00
/* EVMC: Ethereum Client-VM Connector API.
* Copyright 2018-2019 The EVMC Authors.
* Licensed under the Apache License, Version 2.0.
2018-06-19 09:38:08 +00:00
*/
/** This example shows how to use evmc INTERFACE library from evmc CMake package. */
#include <evmc/evmc.h>
int main()
{
2019-09-24 21:59:08 +00:00
struct evmc_vm vm = {.abi_version = EVMC_ABI_VERSION};
return vm.abi_version - EVMC_ABI_VERSION;
2018-06-19 09:38:08 +00:00
}