Project refactor. Introduce the Serpent library.

This commit is contained in:
Gav Wood 2014-06-27 23:47:24 +02:00
parent 18c3da3eb2
commit 5e2b4bbd58
7 changed files with 12 additions and 18 deletions

View File

@ -21,7 +21,7 @@
#include "Assembly.h"
#include <libethsupport/Log.h>
#include <libethential/Log.h>
#include <libethcore/CommonEth.h>
using namespace std;

View File

@ -23,8 +23,9 @@
#include <iostream>
#include <sstream>
#include <libethsupport/Common.h>
#include <libethcore/Instruction.h>
#include <libethential/Common.h>
#include <libevmface/Instruction.h>
#include <libethcore/SHA3.h>
#include "Exceptions.h"
namespace eth

View File

@ -18,17 +18,10 @@ endif()
file(GLOB HEADERS "*.h")
include_directories(..)
include_directories(${MINIUPNPC_ID})
include_directories(${LEVELDB_ID})
target_link_libraries(${EXECUTABLE} ethcore)
target_link_libraries(${EXECUTABLE} ethsupport)
target_link_libraries(${EXECUTABLE} secp256k1)
target_link_libraries(${EXECUTABLE} ${MINIUPNPC_LS})
target_link_libraries(${EXECUTABLE} ${LEVELDB_LS})
target_link_libraries(${EXECUTABLE} ethential)
target_link_libraries(${EXECUTABLE} evmface)
target_link_libraries(${EXECUTABLE} gmp)
if(${TARGET_PLATFORM} STREQUAL "w64")
include_directories(/usr/x86_64-w64-mingw32/include/cryptopp)
target_link_libraries(${EXECUTABLE} cryptopp)

View File

@ -24,8 +24,8 @@
#include <boost/algorithm/string.hpp>
#include <boost/spirit/include/support_utree.hpp>
#include <libethsupport/Log.h>
#include <libethcore/Instruction.h>
#include <libethential/Log.h>
#include <libevmface/Instruction.h>
#include <libethcore/CommonEth.h>
#include "CompilerState.h"
using namespace std;

View File

@ -21,8 +21,8 @@
#pragma once
#include <libethsupport/Common.h>
#include <libethcore/Instruction.h>
#include <libethential/Common.h>
#include <libevmface/Instruction.h>
#include "Assembly.h"
#include "Exceptions.h"

View File

@ -23,7 +23,7 @@
#include <string>
#include <vector>
#include <libethsupport/Common.h>
#include <libethential/Common.h>
namespace eth
{

View File

@ -23,7 +23,7 @@
#include <string>
#include <vector>
#include <libethsupport/Common.h>
#include <libethential/Common.h>
namespace boost { namespace spirit { class utree; } }
namespace sp = boost::spirit;