From 88b945b907eee025e33b259c95a61c7fe5d213c0 Mon Sep 17 00:00:00 2001 From: Oleg Morozenkov Date: Wed, 12 Aug 2015 19:59:52 +0300 Subject: Make the samples independent of the library's CMakeLists --- samples/echobot/CMakeLists.txt | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) (limited to 'samples/echobot/CMakeLists.txt') diff --git a/samples/echobot/CMakeLists.txt b/samples/echobot/CMakeLists.txt index c8c02ea..c54109c 100644 --- a/samples/echobot/CMakeLists.txt +++ b/samples/echobot/CMakeLists.txt @@ -1,4 +1,10 @@ -set(SAMPLE_NAME echobot) - -add_executable(${SAMPLE_NAME} src/main.cpp) -target_link_libraries(${SAMPLE_NAME} TgBot) \ No newline at end of file +cmake_minimum_required(VERSION 2.8.4) +project(echobot) +set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11") +set(Boost_USE_MULTITHREADED ON) +find_package(Threads REQUIRED) +find_package(OpenSSL REQUIRED) +find_package(Boost COMPONENTS system iostreams unit_test_framework REQUIRED) +include_directories(/usr/local/include ${OPENSSL_INCLUDE_DIR} ${Boost_INCLUDE_DIR}) +add_executable(echobot src/main.cpp) +target_link_libraries(echobot /usr/local/lib/libTgBot.a ${CMAKE_THREAD_LIBS_INIT} ${OPENSSL_LIBRARIES} ${Boost_LIBRARIES}) -- cgit v1.2.3