From 85e0e991973594fb458410876a1cc09c5971b918 Mon Sep 17 00:00:00 2001 From: Oleg Morozenkov Date: Thu, 26 Jan 2017 00:32:22 +0300 Subject: Helper method for loading files. Photo upload example. Fixes #24 --- samples/inline-keyboard/CMakeLists.txt | 8 ++++++-- samples/inline-keyboard/src/main.cpp | 9 ++++----- 2 files changed, 10 insertions(+), 7 deletions(-) (limited to 'samples/inline-keyboard') diff --git a/samples/inline-keyboard/CMakeLists.txt b/samples/inline-keyboard/CMakeLists.txt index c59a97a..dbcff89 100644 --- a/samples/inline-keyboard/CMakeLists.txt +++ b/samples/inline-keyboard/CMakeLists.txt @@ -1,10 +1,14 @@ cmake_minimum_required(VERSION 2.8.4) project(inline-keyboard) -set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11") + +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 iostreams unit_test_framework REQUIRED) +find_package(Boost COMPONENTS system iostreams REQUIRED) include_directories(/usr/local/include ${OPENSSL_INCLUDE_DIR} ${Boost_INCLUDE_DIR}) + add_executable(inline-keyboard src/main.cpp) + target_link_libraries(inline-keyboard /usr/local/lib/libTgBot.a ${CMAKE_THREAD_LIBS_INIT} ${OPENSSL_LIBRARIES} ${Boost_LIBRARIES}) diff --git a/samples/inline-keyboard/src/main.cpp b/samples/inline-keyboard/src/main.cpp index 4e6fb21..440f965 100644 --- a/samples/inline-keyboard/src/main.cpp +++ b/samples/inline-keyboard/src/main.cpp @@ -10,11 +10,6 @@ using namespace TgBot; bool sigintGot = false; int main() { - signal(SIGINT, [](int s) { - printf("SIGINT got"); - sigintGot = true; - }); - Bot bot("PLACE YOUR TOKEN HERE"); // Thanks Pietro Falessi for code @@ -40,6 +35,10 @@ int main() { } }); + signal(SIGINT, [](int s) { + printf("SIGINT got"); + sigintGot = true; + }); try { printf("Bot username: %s\n", bot.getApi().getMe()->username.c_str()); -- cgit v1.2.3