about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorKelly Rauchenberger <fefferburbia@gmail.com>2018-01-25 12:12:50 -0500
committerKelly Rauchenberger <fefferburbia@gmail.com>2018-01-25 12:12:50 -0500
commit932872ad17dd0fe86bd8c30f8165e4d0fc0cd5ee (patch)
treef2d2a2dac9dbd8821af01040116734d8985ef316
parentbeb9de04047af3846bb616bfe4706c642de42602 (diff)
downloaddifference-932872ad17dd0fe86bd8c30f8165e4d0fc0cd5ee.tar.gz
difference-932872ad17dd0fe86bd8c30f8165e4d0fc0cd5ee.tar.bz2
difference-932872ad17dd0fe86bd8c30f8165e4d0fc0cd5ee.zip
Removed yaml-cpp submodule
Project now links against a local installation of yaml-cpp.
-rw-r--r--.gitmodules3
-rw-r--r--CMakeLists.txt12
m---------vendor/yaml-cpp0
3 files changed, 9 insertions, 6 deletions
diff --git a/.gitmodules b/.gitmodules index 79dde9f..6fecb3f 100644 --- a/.gitmodules +++ b/.gitmodules
@@ -4,6 +4,3 @@
4[submodule "vendor/libtwittercpp"] 4[submodule "vendor/libtwittercpp"]
5 path = vendor/libtwittercpp 5 path = vendor/libtwittercpp
6 url = https://github.com/hatkirby/libtwittercpp 6 url = https://github.com/hatkirby/libtwittercpp
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 adb9ba1..e444b73 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt
@@ -3,13 +3,19 @@ project (difference)
3 3
4add_subdirectory(vendor/libtwittercpp) 4add_subdirectory(vendor/libtwittercpp)
5add_subdirectory(vendor/verbly) 5add_subdirectory(vendor/verbly)
6add_subdirectory(vendor/yaml-cpp EXCLUDE_FROM_ALL)
7 6
8find_package(PkgConfig) 7find_package(PkgConfig)
9pkg_check_modules(GraphicsMagick GraphicsMagick++ REQUIRED) 8pkg_check_modules(GraphicsMagick GraphicsMagick++ REQUIRED)
9pkg_check_modules(yaml-cpp yaml-cpp REQUIRED)
10
11include_directories(
12 vendor/libtwittercpp/src
13 vendor/libtwittercpp/vendor/curlcpp/include
14 vendor/verbly/lib
15 ${GraphicsMagick_INCLUDE_DIRS}
16 ${yaml-cpp_INCLUDE_DIRS})
10 17
11include_directories(vendor/libtwittercpp/src vendor/libtwittercpp/vendor/curlcpp/include vendor/verbly/lib ${GraphicsMagick_INCLUDE_DIRS} vendor/yaml-cpp/include)
12add_executable(difference difference.cpp main.cpp) 18add_executable(difference difference.cpp main.cpp)
13set_property(TARGET difference PROPERTY CXX_STANDARD 11) 19set_property(TARGET difference PROPERTY CXX_STANDARD 11)
14set_property(TARGET difference PROPERTY CXX_STANDARD_REQUIRED ON) 20set_property(TARGET difference PROPERTY CXX_STANDARD_REQUIRED ON)
15target_link_libraries(difference verbly yaml-cpp twitter++ ${GraphicsMagick_LIBRARIES}) 21target_link_libraries(difference verbly ${yaml-cpp_LIBRARIES} twitter++ ${GraphicsMagick_LIBRARIES})
diff --git a/vendor/yaml-cpp b/vendor/yaml-cpp deleted file mode 160000
Subproject 7d2873ce9f2202ea21b6a8c5ecbc9fe38032c22