From 942666bce9e11e7161f32c29ada13209957306a1 Mon Sep 17 00:00:00 2001
From: Bob Summerwill <bob@summerwill.net>
Date: Sat, 5 Dec 2015 19:15:53 -0800
Subject: [PATCH] Fix a "Solidity::solidity" dependency edge in the CMake file
 for soltest, which got missed in the previous PR. This change resolves an
 inconsistency which was discovered in the automated dependency graph
 generation. softest was being declared as dependent on the Solidity module,
 not on just libsolidity, as it should be.

---
 test/CMakeLists.txt | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt
index 9c6e2944f..c72d31d31 100644
--- a/test/CMakeLists.txt
+++ b/test/CMakeLists.txt
@@ -44,7 +44,7 @@ file(GLOB HEADERS "*.h")
 set(EXECUTABLE soltest)
 add_executable(${EXECUTABLE} ${SRC_LIST} ${HEADERS})
 
-eth_use(${EXECUTABLE} REQUIRED Solidity Eth::ethereum)
+eth_use(${EXECUTABLE} REQUIRED Solidity::solidity Eth::ethereum)
 
 include_directories(BEFORE ..)
 target_link_libraries(${EXECUTABLE} ${Boost_UNIT_TEST_FRAMEWORK_LIBRARIES})