mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Project refactor. Introduce the Serpent library.
This commit is contained in:
parent
18c3da3eb2
commit
5e2b4bbd58
@ -21,7 +21,7 @@
|
|||||||
|
|
||||||
#include "Assembly.h"
|
#include "Assembly.h"
|
||||||
|
|
||||||
#include <libethsupport/Log.h>
|
#include <libethential/Log.h>
|
||||||
#include <libethcore/CommonEth.h>
|
#include <libethcore/CommonEth.h>
|
||||||
|
|
||||||
using namespace std;
|
using namespace std;
|
||||||
|
@ -23,8 +23,9 @@
|
|||||||
|
|
||||||
#include <iostream>
|
#include <iostream>
|
||||||
#include <sstream>
|
#include <sstream>
|
||||||
#include <libethsupport/Common.h>
|
#include <libethential/Common.h>
|
||||||
#include <libethcore/Instruction.h>
|
#include <libevmface/Instruction.h>
|
||||||
|
#include <libethcore/SHA3.h>
|
||||||
#include "Exceptions.h"
|
#include "Exceptions.h"
|
||||||
|
|
||||||
namespace eth
|
namespace eth
|
||||||
|
@ -18,17 +18,10 @@ endif()
|
|||||||
file(GLOB HEADERS "*.h")
|
file(GLOB HEADERS "*.h")
|
||||||
|
|
||||||
include_directories(..)
|
include_directories(..)
|
||||||
include_directories(${MINIUPNPC_ID})
|
target_link_libraries(${EXECUTABLE} ethential)
|
||||||
include_directories(${LEVELDB_ID})
|
target_link_libraries(${EXECUTABLE} evmface)
|
||||||
|
|
||||||
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} gmp)
|
target_link_libraries(${EXECUTABLE} gmp)
|
||||||
|
|
||||||
|
|
||||||
if(${TARGET_PLATFORM} STREQUAL "w64")
|
if(${TARGET_PLATFORM} STREQUAL "w64")
|
||||||
include_directories(/usr/x86_64-w64-mingw32/include/cryptopp)
|
include_directories(/usr/x86_64-w64-mingw32/include/cryptopp)
|
||||||
target_link_libraries(${EXECUTABLE} cryptopp)
|
target_link_libraries(${EXECUTABLE} cryptopp)
|
||||||
|
@ -24,8 +24,8 @@
|
|||||||
|
|
||||||
#include <boost/algorithm/string.hpp>
|
#include <boost/algorithm/string.hpp>
|
||||||
#include <boost/spirit/include/support_utree.hpp>
|
#include <boost/spirit/include/support_utree.hpp>
|
||||||
#include <libethsupport/Log.h>
|
#include <libethential/Log.h>
|
||||||
#include <libethcore/Instruction.h>
|
#include <libevmface/Instruction.h>
|
||||||
#include <libethcore/CommonEth.h>
|
#include <libethcore/CommonEth.h>
|
||||||
#include "CompilerState.h"
|
#include "CompilerState.h"
|
||||||
using namespace std;
|
using namespace std;
|
||||||
|
@ -21,8 +21,8 @@
|
|||||||
|
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include <libethsupport/Common.h>
|
#include <libethential/Common.h>
|
||||||
#include <libethcore/Instruction.h>
|
#include <libevmface/Instruction.h>
|
||||||
#include "Assembly.h"
|
#include "Assembly.h"
|
||||||
#include "Exceptions.h"
|
#include "Exceptions.h"
|
||||||
|
|
||||||
|
@ -23,7 +23,7 @@
|
|||||||
|
|
||||||
#include <string>
|
#include <string>
|
||||||
#include <vector>
|
#include <vector>
|
||||||
#include <libethsupport/Common.h>
|
#include <libethential/Common.h>
|
||||||
|
|
||||||
namespace eth
|
namespace eth
|
||||||
{
|
{
|
||||||
|
2
Parser.h
2
Parser.h
@ -23,7 +23,7 @@
|
|||||||
|
|
||||||
#include <string>
|
#include <string>
|
||||||
#include <vector>
|
#include <vector>
|
||||||
#include <libethsupport/Common.h>
|
#include <libethential/Common.h>
|
||||||
|
|
||||||
namespace boost { namespace spirit { class utree; } }
|
namespace boost { namespace spirit { class utree; } }
|
||||||
namespace sp = boost::spirit;
|
namespace sp = boost::spirit;
|
||||||
|
Loading…
Reference in New Issue
Block a user