aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGav Wood <i@gavwood.com>2014-01-04 01:25:46 +0800
committerGav Wood <i@gavwood.com>2014-01-04 01:25:46 +0800
commit0391d6a18b96bd737a320d3777ec2aa0f31c748e (patch)
treeb15e44975c07490107130a2b1789064f0fa13405
parent61e22f7bb56c1f29cbae03e7fdcbdf20c3a472df (diff)
downloaddexon-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.txt3
-rw-r--r--main.cpp2
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)
diff --git a/main.cpp b/main.cpp
index a1b0c818..f9f527a8 100644
--- a/main.cpp
+++ b/main.cpp
@@ -1,5 +1,5 @@
#include <random>
-#include "Common.h"
+#include <Common.h>
#include "RLP.h"
#include "Trie.h"
#include "VirtualMachine.h"