diff options
author | Alex Beregszaszi <alex@rtfs.hu> | 2018-04-21 00:18:05 +0800 |
---|---|---|
committer | Alex Beregszaszi <alex@rtfs.hu> | 2018-04-21 03:40:05 +0800 |
commit | d224d6f98b3de028289594f63345f5377e5f9014 (patch) | |
tree | e7702e2bcd082a0cbed39f62cb617a8984413671 | |
parent | 70fcf1a8e051e2d4bc5c57264fb49d611ac18c19 (diff) | |
download | dexon-solidity-d224d6f98b3de028289594f63345f5377e5f9014.tar.gz dexon-solidity-d224d6f98b3de028289594f63345f5377e5f9014.tar.zst dexon-solidity-d224d6f98b3de028289594f63345f5377e5f9014.zip |
CMake: require builtin jsoncpp headers over system wide headers
-rw-r--r-- | CMakeLists.txt | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 1844b2ed..4ac56b43 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -21,6 +21,7 @@ include(EthCcache) # Let's find our dependencies include(EthDependencies) include(jsoncpp) +include_directories(${JSONCPP_INCLUDE_DIR}) find_package(Threads) |