diff options
author | Kelly Rauchenberger <fefferburbia@gmail.com> | 2016-03-19 15:21:22 -0400 |
---|---|---|
committer | Kelly Rauchenberger <fefferburbia@gmail.com> | 2016-03-19 15:21:22 -0400 |
commit | 21404aa624a6de6176306db31af1a6899b9b1b2c (patch) | |
tree | b5259f3f5407bde9ad17d3b57452e26e33bd8e0a /CMakeLists.txt | |
parent | cc20ae82dd724ec28c34bb2b66eb09693bfaa0f1 (diff) | |
download | furries-21404aa624a6de6176306db31af1a6899b9b1b2c.tar.gz furries-21404aa624a6de6176306db31af1a6899b9b1b2c.tar.bz2 furries-21404aa624a6de6176306db31af1a6899b9b1b2c.zip |
Changed library link order to fix error
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 3a8fab8..2ceeb80 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt | |||
@@ -12,4 +12,4 @@ include_directories(vendor/twitcurl/libtwitcurl ${sqlite3_INCLUDE_DIR} vendor/ve | |||
12 | add_executable(furries furries.cpp) | 12 | add_executable(furries furries.cpp) |
13 | set_property(TARGET furries PROPERTY CXX_STANDARD 11) | 13 | set_property(TARGET furries PROPERTY CXX_STANDARD 11) |
14 | set_property(TARGET furries PROPERTY CXX_STANDARD_REQUIRED ON) | 14 | set_property(TARGET furries PROPERTY CXX_STANDARD_REQUIRED ON) |
15 | target_link_libraries(furries ${sqlite3_LIBRARIES} ${YamlCpp_LIBRARIES} twitcurl curl verbly) | 15 | target_link_libraries(furries verbly ${sqlite3_LIBRARIES} ${YamlCpp_LIBRARIES} twitcurl curl) |