diff options
author | chriseth <c@ethdev.com> | 2015-12-06 19:40:37 +0800 |
---|---|---|
committer | chriseth <c@ethdev.com> | 2015-12-06 19:40:37 +0800 |
commit | ba8bc4565aa0e5c41be107a7bbae3b51c74679c6 (patch) | |
tree | 49ae14e1e6ccf288e19e491d4617c82fb980326d /test | |
parent | 02e4aa94ff7b1389adf6fae76d403050cf81bc72 (diff) | |
parent | 942666bce9e11e7161f32c29ada13209957306a1 (diff) | |
download | dexon-solidity-ba8bc4565aa0e5c41be107a7bbae3b51c74679c6.tar dexon-solidity-ba8bc4565aa0e5c41be107a7bbae3b51c74679c6.tar.gz dexon-solidity-ba8bc4565aa0e5c41be107a7bbae3b51c74679c6.tar.bz2 dexon-solidity-ba8bc4565aa0e5c41be107a7bbae3b51c74679c6.tar.lz dexon-solidity-ba8bc4565aa0e5c41be107a7bbae3b51c74679c6.tar.xz dexon-solidity-ba8bc4565aa0e5c41be107a7bbae3b51c74679c6.tar.zst dexon-solidity-ba8bc4565aa0e5c41be107a7bbae3b51c74679c6.zip |
Merge pull request #279 from doublethinkco/develop
Fix a "Solidity::solidity" dependency edge in the CMake file for soltest
Diffstat (limited to 'test')
-rw-r--r-- | test/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt index 9c6e2944..c72d31d3 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}) |