Split ethcore off into devcrypto ready for Whisper's crypto and repot namespace.

Rename ethential to devcore.
This commit is contained in:
Gav Wood 2014-09-05 18:24:29 +02:00
parent 6ff57fe075
commit 55d0e1c34e
8 changed files with 8 additions and 8 deletions

View File

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

View File

@ -23,7 +23,7 @@
#include <iostream> #include <iostream>
#include <sstream> #include <sstream>
#include <libethential/Common.h> #include <libdevcore/Common.h>
#include <libevmface/Instruction.h> #include <libevmface/Instruction.h>
#include "Exceptions.h" #include "Exceptions.h"

View File

@ -18,7 +18,7 @@ file(GLOB HEADERS "*.h")
include_directories(..) include_directories(..)
target_link_libraries(${EXECUTABLE} evmface) target_link_libraries(${EXECUTABLE} evmface)
target_link_libraries(${EXECUTABLE} ethential) target_link_libraries(${EXECUTABLE} devcore)
if("${TARGET_PLATFORM}" STREQUAL "w64") if("${TARGET_PLATFORM}" STREQUAL "w64")

View File

@ -23,7 +23,7 @@
#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 <libethential/Log.h> #include <libdevcore/Log.h>
#include <libevmface/Instruction.h> #include <libevmface/Instruction.h>
#include "CompilerState.h" #include "CompilerState.h"
#include "Parser.h" #include "Parser.h"

View File

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

View File

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

View File

@ -21,7 +21,7 @@
#pragma once #pragma once
#include <libethential/Exceptions.h> #include <libdevcore/Exceptions.h>
namespace dev namespace dev
{ {

View File

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