aboutsummaryrefslogtreecommitdiffstats
path: root/libevmasm
diff options
context:
space:
mode:
authorchriseth <chris@ethereum.org>2016-11-08 20:47:52 +0800
committerGitHub <noreply@github.com>2016-11-08 20:47:52 +0800
commit7a30e8cf6edd3749e908913794aa6b195ba7520b (patch)
tree4ed6b70b663c2b344f81d019f8764584b02b69c3 /libevmasm
parentdd0879fe438af22d6db49826e800ccd14c3780e7 (diff)
parent598154ed17f4155406ec1c047f3294c316ebd658 (diff)
downloaddexon-solidity-7a30e8cf6edd3749e908913794aa6b195ba7520b.tar.gz
dexon-solidity-7a30e8cf6edd3749e908913794aa6b195ba7520b.tar.zst
dexon-solidity-7a30e8cf6edd3749e908913794aa6b195ba7520b.zip
Merge pull request #1252 from ethereum/jsoncpp-from-source
Build jsoncpp from source using jsoncpp.cmake script
Diffstat (limited to 'libevmasm')
-rw-r--r--libevmasm/CMakeLists.txt3
1 files changed, 2 insertions, 1 deletions
diff --git a/libevmasm/CMakeLists.txt b/libevmasm/CMakeLists.txt
index 14800f41..9cc3e93e 100644
--- a/libevmasm/CMakeLists.txt
+++ b/libevmasm/CMakeLists.txt
@@ -8,6 +8,7 @@ file(GLOB HEADERS "*.h")
include_directories(BEFORE ..)
add_library(${EXECUTABLE} ${SRC_LIST} ${HEADERS})
-eth_use(${EXECUTABLE} REQUIRED Jsoncpp Dev::soldevcore)
+eth_use(${EXECUTABLE} REQUIRED Dev::soldevcore)
+target_link_libraries(${EXECUTABLE} jsoncpp)
install( TARGETS ${EXECUTABLE} RUNTIME DESTINATION bin ARCHIVE DESTINATION lib LIBRARY DESTINATION lib )