blob: 0eaaa10a2e0d646e9e4190a1698902f518cca964 (
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
|
cmake_minimum_required (VERSION 3.1)
project (grunge)
add_subdirectory(vendor/libtwittercpp)
add_subdirectory(vendor/verbly)
find_package(PkgConfig)
pkg_check_modules(yaml-cpp yaml-cpp REQUIRED)
pkg_check_modules(GraphicsMagick GraphicsMagick++ REQUIRED)
include_directories(
vendor/libtwittercpp/src
vendor/libtwittercpp/vendor/curlcpp/include
vendor/verbly/lib
${yaml-cpp_INCLUDE_DIRS}
${GraphicsMagick_INCLUDE_DIRS})
link_directories(${GraphicsMagick_LIBRARY_DIRS})
add_executable(grunge main.cpp grunge.cpp palette.cpp)
set_property(TARGET grunge PROPERTY CXX_STANDARD 11)
set_property(TARGET grunge PROPERTY CXX_STANDARD_REQUIRED ON)
target_link_libraries(grunge ${yaml-cpp_LIBRARIES} ${GraphicsMagick_LIBRARIES} verbly twitter++)
|