diff options
| author | Kelly Rauchenberger <fefferburbia@gmail.com> | 2016-03-19 09:21:35 -0400 |
|---|---|---|
| committer | Kelly Rauchenberger <fefferburbia@gmail.com> | 2016-03-19 09:21:35 -0400 |
| commit | b4fa1f4cb3d1edbfaa55927f2b4c8717017a311b (patch) | |
| tree | 50741bb4d6c648542da23193bf893a07b5b5df21 | |
| parent | 44f53a1f2d6bd3c238b8b6f4a3f440c6aec41fac (diff) | |
| download | wordplay-b4fa1f4cb3d1edbfaa55927f2b4c8717017a311b.tar.gz wordplay-b4fa1f4cb3d1edbfaa55927f2b4c8717017a311b.tar.bz2 wordplay-b4fa1f4cb3d1edbfaa55927f2b4c8717017a311b.zip | |
Reordered link libraries to fix linking error
| -rw-r--r-- | CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
| diff --git a/CMakeLists.txt b/CMakeLists.txt index a7693ff..0ef9832 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt | |||
| @@ -16,4 +16,4 @@ include_directories(vendor/verbly/lib) | |||
| 16 | add_executable(wordplay wordplay.cpp) | 16 | add_executable(wordplay wordplay.cpp) |
| 17 | set_property(TARGET wordplay PROPERTY CXX_STANDARD 11) | 17 | set_property(TARGET wordplay PROPERTY CXX_STANDARD 11) |
| 18 | set_property(TARGET wordplay PROPERTY CXX_STANDARD_REQUIRED ON) | 18 | set_property(TARGET wordplay PROPERTY CXX_STANDARD_REQUIRED ON) |
| 19 | target_link_libraries(wordplay ${sqlite3_LIBRARIES} yaml-cpp twitcurl curl verbly) | 19 | target_link_libraries(wordplay verbly ${sqlite3_LIBRARIES} yaml-cpp twitcurl curl) |
