Move evmc.h to include/evmc dir

This commit is contained in:
Paweł Bylica 2018-04-18 16:22:24 +02:00
parent c2978de698
commit 262211ab68
No known key found for this signature in database
GPG Key ID: 7A0C037434FE77EF
6 changed files with 9 additions and 10 deletions

View File

@ -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

View File

@ -1,4 +1,4 @@
#include <evmc.h>
#include <evmc/evmc.h>
#include <inttypes.h>
#include <string.h>

View File

@ -5,7 +5,7 @@
#pragma once
#include <evmc.h>
#include <evmc/evmc.h>
/**
* Creates EVMC Example VM.

View File

@ -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>

View File

@ -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();