From 99072def67e54d664edd96b9c0f124c4f09cedee Mon Sep 17 00:00:00 2001 From: Oleg Morozenkov Date: Wed, 29 Jul 2015 14:45:45 +0300 Subject: Fix includes + fix some minor bugs --- CMakeLists.txt | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) (limited to 'CMakeLists.txt') diff --git a/CMakeLists.txt b/CMakeLists.txt index ba9ae76..8fd3321 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -7,16 +7,16 @@ option(ENABLE_SAMPLES "Set to ON to enable building of samples" OFF) ### sources set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11") -include_directories("${PROJECT_SOURCE_DIR}/include") +include_directories(include) set(SRC_LIST - src/tgbot/Api.cpp - src/tgbot/TgTypeParser.cpp - src/tgbot/TgException.cpp - src/tgbot/net/Url.cpp - src/tgbot/net/HttpClient.cpp - src/tgbot/net/HttpParser.cpp - src/tgbot/net/TgLongPoll.cpp - src/tgbot/tools/StringTools.cpp + src/Api.cpp + src/TgTypeParser.cpp + src/TgException.cpp + src/net/Url.cpp + src/net/HttpClient.cpp + src/net/HttpParser.cpp + src/net/TgLongPoll.cpp + src/tools/StringTools.cpp ) ### libs -- cgit v1.2.3