diff options
author | Oleg Morozenkov <omorozenkov@gmail.com> | 2015-07-29 14:45:45 +0300 |
---|---|---|
committer | Oleg Morozenkov <omorozenkov@gmail.com> | 2015-07-29 14:45:45 +0300 |
commit | 99072def67e54d664edd96b9c0f124c4f09cedee (patch) | |
tree | b34ce972e87686b27f6d66ffaa31b079aa0b52d7 /CMakeLists.txt | |
parent | f69b2ac4ff123e0fb8b335fe28f6de4242c4f396 (diff) |
Fix includes + fix some minor bugs
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 18 |
1 files changed, 9 insertions, 9 deletions
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 |