about summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--.gitmodules3
-rw-r--r--CMakeLists.txt14
m---------vendor/yaml-cpp0
3 files changed, 10 insertions, 7 deletions
diff --git a/.gitmodules b/.gitmodules index d627b76..ad942bc 100644 --- a/.gitmodules +++ b/.gitmodules
@@ -4,3 +4,6 @@
4[submodule "vendor/verbly"] 4[submodule "vendor/verbly"]
5 path = vendor/verbly 5 path = vendor/verbly
6 url = https://github.com/hatkirby/verbly 6 url = https://github.com/hatkirby/verbly
7[submodule "vendor/yaml-cpp"]
8 path = vendor/yaml-cpp
9 url = https://github.com/jbeder/yaml-cpp
diff --git a/CMakeLists.txt b/CMakeLists.txt index 2ceeb80..266c9d0 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt
@@ -1,15 +1,15 @@
1cmake_minimum_required (VERSION 2.6) 1cmake_minimum_required (VERSION 3.1)
2project (furries) 2project (furries)
3 3
4add_subdirectory(vendor/twitcurl/libtwitcurl)
5add_subdirectory(vendor/verbly)
6
7find_package(PkgConfig) 4find_package(PkgConfig)
8pkg_check_modules(YamlCpp yaml-cpp REQUIRED)
9pkg_check_modules(sqlite3 sqlite3 REQUIRED) 5pkg_check_modules(sqlite3 sqlite3 REQUIRED)
10 6
11include_directories(vendor/twitcurl/libtwitcurl ${sqlite3_INCLUDE_DIR} vendor/verbly/lib) 7add_subdirectory(vendor/twitcurl/libtwitcurl)
8add_subdirectory(vendor/verbly)
9add_subdirectory(vendor/yaml-cpp EXCLUDE_FROM_ALL)
10
11include_directories(vendor/twitcurl/libtwitcurl ${sqlite3_INCLUDE_DIR} vendor/verbly/lib vendor/yaml-cpp/include)
12add_executable(furries furries.cpp) 12add_executable(furries furries.cpp)
13set_property(TARGET furries PROPERTY CXX_STANDARD 11) 13set_property(TARGET furries PROPERTY CXX_STANDARD 11)
14set_property(TARGET furries PROPERTY CXX_STANDARD_REQUIRED ON) 14set_property(TARGET furries PROPERTY CXX_STANDARD_REQUIRED ON)
15target_link_libraries(furries verbly ${sqlite3_LIBRARIES} ${YamlCpp_LIBRARIES} twitcurl curl) 15target_link_libraries(furries verbly ${sqlite3_LIBRARIES} yaml-cpp twitcurl curl)
diff --git a/vendor/yaml-cpp b/vendor/yaml-cpp new file mode 160000
Subproject 34bd1a7083e5875e6a4b2d4f61c0b356cc5d53f