diff options
author | Gav Wood <i@gavwood.com> | 2014-01-04 01:25:46 +0800 |
---|---|---|
committer | Gav Wood <i@gavwood.com> | 2014-01-04 01:25:46 +0800 |
commit | 0391d6a18b96bd737a320d3777ec2aa0f31c748e (patch) | |
tree | b15e44975c07490107130a2b1789064f0fa13405 | |
parent | 61e22f7bb56c1f29cbae03e7fdcbdf20c3a472df (diff) | |
download | dexon-solidity-0391d6a18b96bd737a320d3777ec2aa0f31c748e.tar dexon-solidity-0391d6a18b96bd737a320d3777ec2aa0f31c748e.tar.gz dexon-solidity-0391d6a18b96bd737a320d3777ec2aa0f31c748e.tar.bz2 dexon-solidity-0391d6a18b96bd737a320d3777ec2aa0f31c748e.tar.lz dexon-solidity-0391d6a18b96bd737a320d3777ec2aa0f31c748e.tar.xz dexon-solidity-0391d6a18b96bd737a320d3777ec2aa0f31c748e.tar.zst dexon-solidity-0391d6a18b96bd737a320d3777ec2aa0f31c748e.zip |
VM nearly instruction-complete.
-rw-r--r-- | CMakeLists.txt | 3 | ||||
-rw-r--r-- | main.cpp | 2 |
2 files changed, 3 insertions, 2 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 336ccd15..fbd39371 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -3,7 +3,8 @@ cmake_policy(SET CMP0015 NEW) aux_source_directory(. SRC_LIST) include_directories(../libethereum) link_directories(../libethereum) +link_directories(../../secp256k1) add_executable(testeth ${SRC_LIST}) -target_link_libraries(testeth libethereum) +target_link_libraries(testeth ethereum) @@ -1,5 +1,5 @@ #include <random> -#include "Common.h" +#include <Common.h> #include "RLP.h" #include "Trie.h" #include "VirtualMachine.h" |