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.
This commit is contained in:
Bob Summerwill 2015-12-05 19:15:53 -08:00
parent 02e4aa94ff
commit 942666bce9

View File

@ -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})