diff options
author | Oleg Morozenkov <m@oleg.rocks> | 2018-03-10 15:36:34 +0300 |
---|---|---|
committer | Oleg Morozenkov <m@oleg.rocks> | 2018-03-10 15:36:34 +0300 |
commit | a02363a26a629f2c5d94c95f31acc07cef8230d0 (patch) | |
tree | 564af89dd77c5473047b9569ec60d00dc3e4a28b /samples | |
parent | f26e8402cf886fbb49ef7047024d40b3fc2bfe17 (diff) |
Fixes #41
Diffstat (limited to 'samples')
-rw-r--r-- | samples/echobot/CMakeLists.txt | 2 | ||||
-rw-r--r-- | samples/inline-keyboard/CMakeLists.txt | 2 | ||||
-rw-r--r-- | samples/photo/CMakeLists.txt | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/samples/echobot/CMakeLists.txt b/samples/echobot/CMakeLists.txt index 5df19f7..d67f4d4 100644 --- a/samples/echobot/CMakeLists.txt +++ b/samples/echobot/CMakeLists.txt @@ -6,7 +6,7 @@ set(Boost_USE_MULTITHREADED ON) find_package(Threads REQUIRED) find_package(OpenSSL REQUIRED) -find_package(Boost COMPONENTS system iostreams REQUIRED) +find_package(Boost COMPONENTS system REQUIRED) include_directories(/usr/local/include ${OPENSSL_INCLUDE_DIR} ${Boost_INCLUDE_DIR}) add_executable(echobot src/main.cpp) diff --git a/samples/inline-keyboard/CMakeLists.txt b/samples/inline-keyboard/CMakeLists.txt index dbcff89..4790800 100644 --- a/samples/inline-keyboard/CMakeLists.txt +++ b/samples/inline-keyboard/CMakeLists.txt @@ -6,7 +6,7 @@ set(Boost_USE_MULTITHREADED ON) find_package(Threads REQUIRED) find_package(OpenSSL REQUIRED) -find_package(Boost COMPONENTS system iostreams REQUIRED) +find_package(Boost COMPONENTS system REQUIRED) include_directories(/usr/local/include ${OPENSSL_INCLUDE_DIR} ${Boost_INCLUDE_DIR}) add_executable(inline-keyboard src/main.cpp) diff --git a/samples/photo/CMakeLists.txt b/samples/photo/CMakeLists.txt index d431b88..de6f12f 100644 --- a/samples/photo/CMakeLists.txt +++ b/samples/photo/CMakeLists.txt @@ -6,7 +6,7 @@ set(Boost_USE_MULTITHREADED ON) find_package(Threads REQUIRED) find_package(OpenSSL REQUIRED) -find_package(Boost COMPONENTS system iostreams REQUIRED) +find_package(Boost COMPONENTS system REQUIRED) include_directories(/usr/local/include ${OPENSSL_INCLUDE_DIR} ${Boost_INCLUDE_DIR}) add_executable(photo src/main.cpp) |