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

add_subdirectory(vendor/twitcurl/libtwitcurl)

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

include_directories(vendor/twitcurl/libtwitcurl)
add_executable(rawr-ebooks ebooks.cpp kgramstats.cpp freevars.cpp malaprop.cpp)
target_link_libraries(rawr-ebooks ${YamlCpp_LIBRARIES} twitcurl curl)

add_executable(rawr-gen gen.cpp kgramstats.cpp freevars.cpp malaprop.cpp)