diff options
author | Oleg Morozenkov <m@oleg.rocks> | 2018-07-23 01:56:42 +0300 |
---|---|---|
committer | Oleg Morozenkov <m@oleg.rocks> | 2018-07-23 01:56:42 +0300 |
commit | d47ee877be5d1175bdc36f2d87881ddaf875a8e9 (patch) | |
tree | 7fd20cdc1236fe6b832ae980de12afd7071ebab9 /samples/echobot/CMakeLists.txt | |
parent | cea20d4078f2088dea0dd589f1cc9dd7ee22461b (diff) |
Refactor http clients, fix webhook server, add more samples, change tabs to 4 spaces
Diffstat (limited to 'samples/echobot/CMakeLists.txt')
-rw-r--r-- | samples/echobot/CMakeLists.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/samples/echobot/CMakeLists.txt b/samples/echobot/CMakeLists.txt index 0639d66..7019e8f 100644 --- a/samples/echobot/CMakeLists.txt +++ b/samples/echobot/CMakeLists.txt @@ -10,8 +10,8 @@ find_package(Boost COMPONENTS system REQUIRED) find_package(CURL) include_directories(/usr/local/include ${OPENSSL_INCLUDE_DIR} ${Boost_INCLUDE_DIR}) if (CURL_FOUND) -include_directories(${CURL_INCLUDE_DIRS}) -add_definitions(-DHAVE_CURL) + include_directories(${CURL_INCLUDE_DIRS}) + add_definitions(-DHAVE_CURL) endif() add_executable(echobot src/main.cpp) |