diff options
author | Marek Kotewicz <marek.kotewicz@gmail.com> | 2015-02-16 20:48:25 +0800 |
---|---|---|
committer | Marek Kotewicz <marek.kotewicz@gmail.com> | 2015-02-16 20:48:25 +0800 |
commit | 4b371eee0eef548c3abb667a6c49dd498f460868 (patch) | |
tree | e97d01a5c0d53e8100d577184e4f11cce6e8236e | |
parent | 600b38224ea1592af9a8348b082abb996ee5ef76 (diff) | |
download | dexon-solidity-4b371eee0eef548c3abb667a6c49dd498f460868.tar.gz dexon-solidity-4b371eee0eef548c3abb667a6c49dd498f460868.tar.zst dexon-solidity-4b371eee0eef548c3abb667a6c49dd498f460868.zip |
fixed #1022
-rw-r--r-- | CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 6ba07f28..bc14918b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -4,8 +4,8 @@ aux_source_directory(. SRC_LIST) list(REMOVE_ITEM SRC_LIST "./createRandomTest.cpp") list(REMOVE_ITEM SRC_LIST "./checkRandomTest.cpp") -include_directories(..) include_directories(BEFORE ${JSONCPP_INCLUDE_DIRS}) +include_directories(BEFORE ..) include_directories(${Boost_INCLUDE_DIRS}) include_directories(${CRYPTOPP_INCLUDE_DIRS}) include_directories(${JSON_RPC_CPP_INCLUDE_DIRS}) |