diff options
author | Oleg Morozenkov <omorozenkov@gmail.com> | 2018-11-24 09:40:30 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-11-24 09:40:30 +0300 |
commit | 158c179beb3d06f110d665075d5e283e24592de6 (patch) | |
tree | 465d04c0ebbf573ddb0fa57ce2015bd44efd4ddf /samples/echobot-submodule/CMakeLists.txt | |
parent | b35438dd77e4c2391391d7777c0a0b4cfd6e46f5 (diff) | |
parent | ba46cf2f3c9f253b84139f3b7229fe39fe5714ef (diff) |
Merge pull request #85 from ingjieye/master
Update CMakeLists.txt so tgbot-cpp can be used as a submodule
Diffstat (limited to 'samples/echobot-submodule/CMakeLists.txt')
-rw-r--r-- | samples/echobot-submodule/CMakeLists.txt | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/samples/echobot-submodule/CMakeLists.txt b/samples/echobot-submodule/CMakeLists.txt new file mode 100644 index 0000000..fbb9087 --- /dev/null +++ b/samples/echobot-submodule/CMakeLists.txt @@ -0,0 +1,20 @@ +cmake_minimum_required(VERSION 2.8.4) +project(echobot-submodule) + +set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11 -Wall") +set(Boost_USE_MULTITHREADED ON) + +find_package(Threads REQUIRED) +find_package(OpenSSL REQUIRED) +find_package(Boost COMPONENTS system REQUIRED) +find_package(CURL) +include_directories(/usr/local/include ${OPENSSL_INCLUDE_DIR} ${Boost_INCLUDE_DIR}) +if (CURL_FOUND) + include_directories(${CURL_INCLUDE_DIRS}) + add_definitions(-DHAVE_CURL) +endif() + +add_subdirectory(tgbot-cpp) +add_executable(echobot-submodule src/main.cpp) + +target_link_libraries(echobot-submodule TgBot ${CMAKE_THREAD_LIBS_INIT} ${OPENSSL_LIBRARIES} ${Boost_LIBRARIES} ${CURL_LIBRARIES}) |