diff options
author | Kelly Rauchenberger <fefferburbia@gmail.com> | 2018-06-19 19:20:50 -0400 |
---|---|---|
committer | Kelly Rauchenberger <fefferburbia@gmail.com> | 2018-06-19 19:20:50 -0400 |
commit | cfaeab1445bf9d5654b1eb5945144887ee0c3836 (patch) | |
tree | e3c4e2c39fcbb89a83c4256fce75f1d4209b3cbc | |
parent | 12db0bdd8118903bb03ff3f1058d73ceabcbf3d8 (diff) | |
download | support-cfaeab1445bf9d5654b1eb5945144887ee0c3836.tar.gz support-cfaeab1445bf9d5654b1eb5945144887ee0c3836.tar.bz2 support-cfaeab1445bf9d5654b1eb5945144887ee0c3836.zip |
Removed yaml-cpp submodule
-rw-r--r-- | .gitmodules | 3 | ||||
-rw-r--r-- | CMakeLists.txt | 13 | ||||
m--------- | vendor/yaml-cpp | 0 |
3 files changed, 9 insertions, 7 deletions
diff --git a/.gitmodules b/.gitmodules index ec4d45e..886cf0c 100644 --- a/.gitmodules +++ b/.gitmodules | |||
@@ -1,9 +1,6 @@ | |||
1 | [submodule "vendor/libtwittercpp"] | 1 | [submodule "vendor/libtwittercpp"] |
2 | path = vendor/libtwittercpp | 2 | path = vendor/libtwittercpp |
3 | url = git@github.com:hatkirby/libtwittercpp | 3 | url = git@github.com:hatkirby/libtwittercpp |
4 | [submodule "vendor/yaml-cpp"] | ||
5 | path = vendor/yaml-cpp | ||
6 | url = git@github.com:jbeder/yaml-cpp | ||
7 | [submodule "vendor/verbly"] | 4 | [submodule "vendor/verbly"] |
8 | path = vendor/verbly | 5 | path = vendor/verbly |
9 | url = git@github.com:hatkirby/verbly | 6 | url = git@github.com:hatkirby/verbly |
diff --git a/CMakeLists.txt b/CMakeLists.txt index add6b55..39038a9 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt | |||
@@ -1,13 +1,18 @@ | |||
1 | cmake_minimum_required (VERSION 3.1) | 1 | cmake_minimum_required (VERSION 3.1) |
2 | project (support) | 2 | project (support) |
3 | 3 | ||
4 | find_package(PkgConfig) | ||
5 | pkg_check_modules(yaml-cpp yaml-cpp REQUIRED) | ||
6 | |||
4 | add_subdirectory(vendor/verbly) | 7 | add_subdirectory(vendor/verbly) |
5 | add_subdirectory(vendor/libtwittercpp) | 8 | add_subdirectory(vendor/libtwittercpp) |
6 | add_subdirectory(vendor/yaml-cpp EXCLUDE_FROM_ALL) | ||
7 | 9 | ||
8 | include_directories(vendor/verbly/lib vendor/libtwittercpp/src vendor/yaml-cpp/include) | 10 | include_directories( |
11 | vendor/verbly/lib | ||
12 | vendor/libtwittercpp/src | ||
13 | ${yaml-cpp_INCLUDE_DIRS}) | ||
14 | |||
9 | add_executable(support sentence.cpp support.cpp) | 15 | add_executable(support sentence.cpp support.cpp) |
10 | set_property(TARGET support PROPERTY CXX_STANDARD 11) | 16 | set_property(TARGET support PROPERTY CXX_STANDARD 11) |
11 | set_property(TARGET support PROPERTY CXX_STANDARD_REQUIRED ON) | 17 | set_property(TARGET support PROPERTY CXX_STANDARD_REQUIRED ON) |
12 | target_link_libraries(support verbly yaml-cpp twitter++) | 18 | target_link_libraries(support verbly twitter++ ${yaml-cpp_LIBRARIES}) |
13 | |||
diff --git a/vendor/yaml-cpp b/vendor/yaml-cpp deleted file mode 160000 | |||
Subproject bedb28fdb4fd52d97e02f6cb946cae631037089 | |||