about summary refs log tree commit diff stats
path: root/CMakeLists.txt
blob: a7548332c0a4a844164d6d825374e852c101d9e5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
cmake_minimum_required (VERSION 2.6)
project (furries)

add_subdirectory(vendor/twitcurl/libtwitcurl)

find_package(PkgConfig)
pkg_check_modules(YamlCpp yaml-cpp REQUIRED)

include_directories(vendor/twitcurl/libtwitcurl)
add_executable(furries furries.cpp)
target_link_libraries(furries ${YamlCpp_LIBRARIES} mysqlclient twitcurl curl)