diff options
author | Paweł Bylica <chfast@gmail.com> | 2017-08-24 04:09:07 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-08-24 04:09:07 +0800 |
commit | b0c78eaee8dab6f3013e69279fde909a06aba817 (patch) | |
tree | 2e9c9ae948872c7828bfa91b47cf2c8913aba686 /cmake | |
parent | 3b07c4d38e40c52ee8a4d16e56e2afa1a0f27905 (diff) | |
parent | d57e3d7f72708bdb75d861bb8d6cc7bbe7db7263 (diff) | |
download | dexon-solidity-b0c78eaee8dab6f3013e69279fde909a06aba817.tar dexon-solidity-b0c78eaee8dab6f3013e69279fde909a06aba817.tar.gz dexon-solidity-b0c78eaee8dab6f3013e69279fde909a06aba817.tar.bz2 dexon-solidity-b0c78eaee8dab6f3013e69279fde909a06aba817.tar.lz dexon-solidity-b0c78eaee8dab6f3013e69279fde909a06aba817.tar.xz dexon-solidity-b0c78eaee8dab6f3013e69279fde909a06aba817.tar.zst dexon-solidity-b0c78eaee8dab6f3013e69279fde909a06aba817.zip |
Merge pull request #2784 from ethereum/cmake-3.0
Fix CMake 3.0 compatibility
Diffstat (limited to 'cmake')
-rw-r--r-- | cmake/EthDependencies.cmake | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmake/EthDependencies.cmake b/cmake/EthDependencies.cmake index 39ce060e..3d05d44b 100644 --- a/cmake/EthDependencies.cmake +++ b/cmake/EthDependencies.cmake @@ -45,7 +45,7 @@ find_program(CTEST_COMMAND ctest) set(Boost_USE_MULTITHREADED ON) option(Boost_USE_STATIC_LIBS "Link Boost statically" ON) -find_package(Boost 1.54.0 QUIET REQUIRED COMPONENTS regex filesystem unit_test_framework program_options) +find_package(Boost 1.54.0 QUIET REQUIRED COMPONENTS regex filesystem unit_test_framework program_options system) eth_show_dependency(Boost boost) |