From b9de9aed566b6ea24a449026ab72eccdeb7fddc5 Mon Sep 17 00:00:00 2001 From: Kelly Rauchenberger Date: Tue, 19 Jan 2016 08:31:31 -0500 Subject: the furries are begun with basic functionality Only adverbs and basic adjectives are implemented. --- CMakeLists.txt | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 CMakeLists.txt (limited to 'CMakeLists.txt') diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 0000000..e1ff59b --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,12 @@ +cmake_minimum_required (VERSION 2.6) +project (furries) + +add_subdirectory(vendor/twitcurl/libtwitcurl) + +find_package(PkgConfig) +pkg_check_modules(YamlCpp yaml-cpp REQUIRED) +pkg_check_modules(mysqlclient mysqlclient REQUIRED) + +include_directories(${mysqlclient_INCLUDE_DIRS} vendor/twitcurl/libtwitcurl) +add_executable(furries furries.cpp) +target_link_libraries(furries ${YamlCpp_LIBRARIES} ${mysqlclient_LIBRARIES} twitcurl curl) -- cgit 1.4.1