diff options
author | Oleg Morozenkov <omorozenkov@gmail.com> | 2015-07-16 22:12:47 +0300 |
---|---|---|
committer | Oleg Morozenkov <omorozenkov@gmail.com> | 2015-07-16 22:12:47 +0300 |
commit | 13773926c8a4f3e37aef7eff33d022eb839e00a3 (patch) | |
tree | 306242765f2b75b3eb6f8e33e3cd8781bf672057 | |
parent | 4fd5a15e08cbb585643bcd102ef8851c84c60cf8 (diff) |
Remove redundant dependency
-rw-r--r-- | .travis.yml | 2 | ||||
-rwxr-xr-x | CMakeLists.txt | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/.travis.yml b/.travis.yml index 7e4bfd0..ac35a12 100644 --- a/.travis.yml +++ b/.travis.yml @@ -5,7 +5,7 @@ script: - make test before_script: - sudo apt-get update -qq - - sudo apt-get install libboost-all-dev + - sudo apt-get install -qq libboost-all-dev notifications: email: recipients: diff --git a/CMakeLists.txt b/CMakeLists.txt index 36f7b6f..eadb672 100755 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -26,7 +26,7 @@ include_directories(${OPENSSL_INCLUDE_DIR}) # boost set(Boost_USE_MULTITHREADED ON) -find_package(Boost COMPONENTS system container iostreams unit_test_framework REQUIRED) +find_package(Boost COMPONENTS system iostreams unit_test_framework REQUIRED) include_directories(${Boost_INCLUDE_DIR}) set(LIB_LIST |