mirror of https://github.com/status-im/evmc.git
Move evmc.h to include/evmc dir
This commit is contained in:
parent
c2978de698
commit
262211ab68
2
Doxyfile
2
Doxyfile
|
@ -99,7 +99,7 @@ WARN_LOGFILE =
|
|||
#---------------------------------------------------------------------------
|
||||
# Configuration options related to the input files
|
||||
#---------------------------------------------------------------------------
|
||||
INPUT = include/evmc.h
|
||||
INPUT = include/evmc/evmc.h
|
||||
INPUT_ENCODING = UTF-8
|
||||
FILE_PATTERNS =
|
||||
RECURSIVE = NO
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
#include <evmc.h>
|
||||
#include <evmc/evmc.h>
|
||||
|
||||
#include <inttypes.h>
|
||||
#include <string.h>
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
|
||||
#pragma once
|
||||
|
||||
#include <evmc.h>
|
||||
#include <evmc/evmc.h>
|
||||
|
||||
/**
|
||||
* Creates EVMC Example VM.
|
||||
|
|
|
@ -1,13 +1,9 @@
|
|||
// EVMC -- Ethereum Client-VM Connector API
|
||||
// EVMC: Ethereum Client-VM Connector API.
|
||||
// Copyright 2018 Pawel Bylica.
|
||||
// Licensed under the MIT License. See the LICENSE file.
|
||||
|
||||
#include "vmtester.hpp"
|
||||
|
||||
#include <evmc.h>
|
||||
|
||||
#include <gtest/gtest.h>
|
||||
|
||||
#include <boost/dll.hpp>
|
||||
#include <boost/dll/alias.hpp>
|
||||
#include <boost/function.hpp>
|
||||
|
|
|
@ -1,8 +1,11 @@
|
|||
// EVMC -- Ethereum Client-VM Connector API
|
||||
// EVMC: Ethereum Client-VM Connector API
|
||||
// Copyright 2018 Pawel Bylica.
|
||||
// Licensed under the MIT License. See the LICENSE file.
|
||||
|
||||
#include <evmc.h>
|
||||
#pragma once
|
||||
|
||||
#include <evmc/evmc.h>
|
||||
|
||||
#include <gtest/gtest.h>
|
||||
|
||||
evmc_instance* get_vm_instance();
|
||||
|
|
Loading…
Reference in New Issue