diff options
author | chriseth <chris@ethereum.org> | 2018-05-15 22:34:26 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-05-15 22:34:26 +0800 |
commit | 1dca54244bd2bfe2c727d7fb7656844fbbf87574 (patch) | |
tree | de681f4eea15c8dce42d3585e18e61248ea0cc8c | |
parent | 63861aac4a13f1d90680206854d662752a6cdce5 (diff) | |
parent | 89f790c3abcd1320309fe0f683471411cf0d8a15 (diff) | |
download | dexon-solidity-1dca54244bd2bfe2c727d7fb7656844fbbf87574.tar dexon-solidity-1dca54244bd2bfe2c727d7fb7656844fbbf87574.tar.gz dexon-solidity-1dca54244bd2bfe2c727d7fb7656844fbbf87574.tar.bz2 dexon-solidity-1dca54244bd2bfe2c727d7fb7656844fbbf87574.tar.lz dexon-solidity-1dca54244bd2bfe2c727d7fb7656844fbbf87574.tar.xz dexon-solidity-1dca54244bd2bfe2c727d7fb7656844fbbf87574.tar.zst dexon-solidity-1dca54244bd2bfe2c727d7fb7656844fbbf87574.zip |
Merge pull request #4143 from aarlt/jsoncpp-system-header
Mark jsoncpp-headers as system headers
-rw-r--r-- | CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 4ac56b43..0c05208f 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -21,7 +21,7 @@ include(EthCcache) # Let's find our dependencies include(EthDependencies) include(jsoncpp) -include_directories(${JSONCPP_INCLUDE_DIR}) +include_directories(SYSTEM ${JSONCPP_INCLUDE_DIR}) find_package(Threads) |