summary refs log tree commit diff stats
path: root/CMakeLists.txt
blob: 087d4a160523593fbc13859a19372e9b62178bef (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
cmake_minimum_required (VERSION 3.1)
project (father)

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

add_subdirectory(vendor/verbly)

include_directories(
  ${mastodonpp_INCLUDE_DIRS}
  vendor/verbly/lib
  ${yaml-cpp_INCLUDE_DIRS}
  vendor/hkutil
  vendor/json)

link_directories(
  ${mastodonpp_LIBRARY_DIRS}
  ${yaml-cpp_LIBRARY_DIRS})

add_executable(father father.cpp timeline.cpp)
set_property(TARGET father PROPERTY CXX_STANDARD 17)
set_property(TARGET father PROPERTY CXX_STANDARD_REQUIRED ON)
target_link_libraries(father verbly ${mastodonpp_LIBRARIES} ${yaml-cpp_LIBRARIES})