diff options
author | Gav Wood <i@gavwood.com> | 2014-04-23 22:08:11 +0800 |
---|---|---|
committer | Gav Wood <i@gavwood.com> | 2014-04-23 22:08:11 +0800 |
commit | 3a2597d871958da9a2bca473b273027551101abb (patch) | |
tree | 98b74f9a99d48bd54255e537b13a4abc382f7142 | |
parent | 39a5c080511012373e860dcd3e44585c336beb72 (diff) | |
download | dexon-solidity-3a2597d871958da9a2bca473b273027551101abb.tar dexon-solidity-3a2597d871958da9a2bca473b273027551101abb.tar.gz dexon-solidity-3a2597d871958da9a2bca473b273027551101abb.tar.bz2 dexon-solidity-3a2597d871958da9a2bca473b273027551101abb.tar.lz dexon-solidity-3a2597d871958da9a2bca473b273027551101abb.tar.xz dexon-solidity-3a2597d871958da9a2bca473b273027551101abb.tar.zst dexon-solidity-3a2597d871958da9a2bca473b273027551101abb.zip |
Split out libethcore from libethereum.
-rw-r--r-- | CMakeLists.txt | 4 | ||||
-rw-r--r-- | MemTrie.cpp | 4 | ||||
-rw-r--r-- | MemTrie.h | 4 | ||||
-rw-r--r-- | TestHelper.cpp | 2 | ||||
-rw-r--r-- | TrieHash.cpp | 4 | ||||
-rw-r--r-- | TrieHash.h | 4 | ||||
-rw-r--r-- | crypto.cpp | 10 | ||||
-rw-r--r-- | dagger.cpp | 4 | ||||
-rw-r--r-- | fork.cpp | 6 | ||||
-rw-r--r-- | hexPrefix.cpp | 4 | ||||
-rw-r--r-- | main.cpp | 2 | ||||
-rw-r--r-- | network.cpp | 6 | ||||
-rw-r--r-- | peer.cpp | 4 | ||||
-rw-r--r-- | rlp.cpp | 6 | ||||
-rw-r--r-- | state.cpp | 8 | ||||
-rw-r--r-- | trie.cpp | 2 | ||||
-rw-r--r-- | txTest.cpp | 6 | ||||
-rw-r--r-- | vm.cpp | 10 |
18 files changed, 45 insertions, 45 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 41f554c3..7fb86dbd 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -2,8 +2,8 @@ cmake_policy(SET CMP0015 NEW) aux_source_directory(. SRC_LIST) -include_directories(../secp256k1) -include_directories(../libethereum) +include_directories(..) +link_directories(../libethcore) link_directories(../libethereum) add_executable(testeth ${SRC_LIST}) diff --git a/MemTrie.cpp b/MemTrie.cpp index 0a7d0ebe..c9e4fd8f 100644 --- a/MemTrie.cpp +++ b/MemTrie.cpp @@ -21,8 +21,8 @@ #include "MemTrie.h" -#include <CommonEth.h> -#include <TrieCommon.h> +#include <libethcore/TrieCommon.h> +#include <libethereum/CommonEth.h> using namespace std; using namespace eth; @@ -21,8 +21,8 @@ #pragma once -#include <Common.h> -#include <FixedHash.h> +#include <libethcore/Common.h> +#include <libethcore/FixedHash.h> namespace eth { diff --git a/TestHelper.cpp b/TestHelper.cpp index 54cb84cc..06f188a8 100644 --- a/TestHelper.cpp +++ b/TestHelper.cpp @@ -21,7 +21,7 @@ #include <thread> #include <chrono> -#include <Client.h> +#include <libethereum/Client.h> #include "TestHelper.h" namespace eth diff --git a/TrieHash.cpp b/TrieHash.cpp index 61840b0e..b12b96dd 100644 --- a/TrieHash.cpp +++ b/TrieHash.cpp @@ -21,8 +21,8 @@ #include "TrieHash.h" -#include <CommonEth.h> -#include <TrieCommon.h> +#include <libethcore/TrieCommon.h> +#include <libethereum/CommonEth.h> using namespace std; using namespace eth; @@ -21,8 +21,8 @@ #pragma once -#include <Common.h> -#include <FixedHash.h> +#include <libethcore/Common.h> +#include <libethcore/FixedHash.h> namespace eth { @@ -21,11 +21,11 @@ */ #include <random> -#include <secp256k1.h> -#include <Common.h> -#include <RLP.h> -#include <Log.h> -#include <Transaction.h> +#include <secp256k1/secp256k1.h> +#include <libethcore/Common.h> +#include <libethcore/RLP.h> +#include <libethcore/Log.h> +#include <libethereum/Transaction.h> #include <boost/test/unit_test.hpp> using namespace std; @@ -21,8 +21,8 @@ */ #include <chrono> -#include "Log.h" -#include "Dagger.h" +#include <libethcore/Log.h> +#include <libethereum/Dagger.h> using namespace std; using namespace std::chrono; using namespace eth; @@ -22,9 +22,9 @@ #include <boost/test/unit_test.hpp> #include <boost/filesystem/operations.hpp> -#include <Client.h> -#include <BlockChain.h> -#include <PeerServer.h> +#include <libethereum/Client.h> +#include <libethereum/BlockChain.h> +#include <libethereum/PeerServer.h> #include "TestHelper.h" using namespace std; using namespace eth; diff --git a/hexPrefix.cpp b/hexPrefix.cpp index a3de61d2..6d3ed89f 100644 --- a/hexPrefix.cpp +++ b/hexPrefix.cpp @@ -22,8 +22,8 @@ #include <fstream> #include "JsonSpiritHeaders.h" -#include "TrieCommon.h" -#include "Log.h" +#include <libethcore/TrieCommon.h> +#include <libethcore/Log.h> #include <boost/test/unit_test.hpp> using namespace std; @@ -33,7 +33,7 @@ int vmTest(); int hexPrefixTest(); int peerTest(int argc, char** argv); -#include <BlockInfo.h> +#include <libethereum/BlockInfo.h> using namespace eth; BOOST_AUTO_TEST_CASE(basic_tests) diff --git a/network.cpp b/network.cpp index 3e27ac6b..216d518c 100644 --- a/network.cpp +++ b/network.cpp @@ -22,9 +22,9 @@ #include <boost/test/unit_test.hpp> #include <boost/filesystem/operations.hpp> -#include <Client.h> -#include <BlockChain.h> -#include <PeerServer.h> +#include <libethereum/Client.h> +#include <libethereum/BlockChain.h> +#include <libethereum/PeerServer.h> #include "TestHelper.h" using namespace std; using namespace eth; @@ -23,8 +23,8 @@ #include <chrono> #include <thread> #include <boost/filesystem/operations.hpp> -#include <BlockChain.h> -#include <PeerServer.h> +#include <libethereum/BlockChain.h> +#include <libethereum/PeerServer.h> using namespace std; using namespace eth; using boost::asio::ip::tcp; @@ -23,9 +23,9 @@ #include <fstream> #include <sstream> #include "JsonSpiritHeaders.h" -#include <Log.h> -#include <RLP.h> -#include <Common.h> +#include <libethcore/Log.h> +#include <libethcore/RLP.h> +#include <libethcore/Common.h> #include <boost/test/unit_test.hpp> #include <algorithm> @@ -21,10 +21,10 @@ */ #include <boost/filesystem/operations.hpp> -#include <secp256k1.h> -#include <BlockChain.h> -#include <State.h> -#include <Defaults.h> +#include <secp256k1/secp256k1.h> +#include <libethereum/BlockChain.h> +#include <libethereum/State.h> +#include <libethereum/Defaults.h> using namespace std; using namespace eth; @@ -23,7 +23,7 @@ #include <fstream> #include <random> #include "JsonSpiritHeaders.h" -#include <TrieDB.h> +#include <libethcore/TrieDB.h> #include "TrieHash.h" #include "MemTrie.h" #include <boost/test/unit_test.hpp> @@ -22,9 +22,9 @@ #include <boost/test/unit_test.hpp> #include <boost/filesystem/operations.hpp> -#include <Client.h> -#include <BlockChain.h> -#include <PeerServer.h> +#include <libethereum/Client.h> +#include <libethereum/BlockChain.h> +#include <libethereum/PeerServer.h> #include "TestHelper.h" using namespace std; using namespace eth; @@ -21,11 +21,11 @@ */ #include <fstream> -#include <ExtVMFace.h> -#include <Transaction.h> -#include <VM.h> -#include <Log.h> -#include <Instruction.h> +#include <libethcore/Log.h> +#include <libethereum/ExtVMFace.h> +#include <libethereum/Transaction.h> +#include <libethereum/VM.h> +#include <libethereum/Instruction.h> #include "JsonSpiritHeaders.h" #include <boost/test/unit_test.hpp> |