Skip to content
This repository has been archived by the owner on Feb 7, 2018. It is now read-only.

Commit

Permalink
Merge remote-tracking branch 'origin/develop' into HEAD
Browse files Browse the repository at this point in the history
  • Loading branch information
chriseth committed Feb 17, 2016
2 parents 8cae72a + 413f624 commit 998f43e
Show file tree
Hide file tree
Showing 9 changed files with 16 additions and 9 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ include(EthPolicy)
eth_policy()

# project name and version should be set after cmake_policy CMP0048
project(cpp-ethereum VERSION "1.1.3")
project(cpp-ethereum VERSION "1.1.4")

include(EthCompilerSettings)

Expand Down
9 changes: 8 additions & 1 deletion dependency_graph/generate.py
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,11 @@ def processSubmodule(root, submodule):
if "solidity" in submodule:
print ' "soljson" -> "solidity"'

print getLibraryAndApplicationNames(submodulePath)
# Mix doesn't have the same sub-module structure as everything else
if (submodule == "mix"):
print 'Mix\n'
else:
print getLibraryAndApplicationNames(submodulePath)

if (submodule == "libethereum"):
print " bgcolor = LavenderBlush"
Expand Down Expand Up @@ -127,6 +131,9 @@ def processUmbrella(root):
and not ("webthree-helpers" in absPath):
processSubmodule(root, submodule)

# Mix doesn't have the same sub-module structure as everything else
print getDependencyEdges(root, "mix")


print 'digraph webthree {'
print ' graph [ label = "webthree dependencies" ]'
Expand Down
2 changes: 1 addition & 1 deletion libweb3core
2 changes: 1 addition & 1 deletion webthree
Submodule webthree updated 2 files
+1 −1 CMakeLists.txt
+2 −7 eth/main.cpp
2 changes: 1 addition & 1 deletion webthree-helpers

0 comments on commit 998f43e

Please sign in to comment.