diff options
Diffstat (limited to 'samples/echobot')
-rw-r--r-- | samples/echobot/CMakeLists.txt | 14 | ||||
-rw-r--r-- | samples/echobot/Dockerfile | 9 |
2 files changed, 19 insertions, 4 deletions
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}) diff --git a/samples/echobot/Dockerfile b/samples/echobot/Dockerfile new file mode 100644 index 0000000..8d8bca5 --- /dev/null +++ b/samples/echobot/Dockerfile @@ -0,0 +1,9 @@ +FROM reo7sp/tgbot-cpp +MAINTAINER Oleg Morozenkov +ENV REFRESHED_AT 2015-08-12 + +WORKDIR /tmp/echobot +COPY . . +RUN cmake . +RUN make -j4 +CMD ./echobot |