From 9ab9e5fcbc1534111d74c688bf7ad6d6ad46ff2b Mon Sep 17 00:00:00 2001 From: Kelly Rauchenberger Date: Thu, 20 Oct 2016 08:58:20 -0400 Subject: Switched from twitcurl to libtwitter++ Also updated verbly, switched from C random interface to C++ random interface, and reworked the datafile to give the generated tweets a different feel. --- CMakeLists.txt | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) (limited to 'CMakeLists.txt') diff --git a/CMakeLists.txt b/CMakeLists.txt index 97d19b9..49b0d2e 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -3,15 +3,12 @@ project (chemist) set(CMAKE_BUILD_TYPE Debug) -find_package(PkgConfig) -pkg_check_modules(sqlite3 sqlite3 REQUIRED) - -add_subdirectory(vendor/twitcurl/libtwitcurl) add_subdirectory(vendor/verbly) add_subdirectory(vendor/yaml-cpp EXCLUDE_FROM_ALL) +add_subdirectory(vendor/libtwittercpp) -include_directories(vendor/twitcurl/libtwitcurl ${sqlite3_INCLUDE_DIR} vendor/verbly/lib vendor/yaml-cpp/include) +include_directories(vendor/verbly/lib vendor/yaml-cpp/include vendor/libtwittercpp/src) add_executable(chemist chemist.cpp) set_property(TARGET chemist PROPERTY CXX_STANDARD 11) set_property(TARGET chemist PROPERTY CXX_STANDARD_REQUIRED ON) -target_link_libraries(chemist verbly ${sqlite3_LIBRARIES} yaml-cpp twitcurl curl) +target_link_libraries(chemist verbly twitter++ yaml-cpp) -- cgit 1.4.1