Does this fix the travis build?

This commit is contained in:
Tim Warren 2015-07-10 16:41:52 -04:00
parent f26ca4fb08
commit 4baf41e46b
1 changed files with 2 additions and 2 deletions

View File

@ -91,7 +91,7 @@ else()
endif()
#link it all
target_link_libraries(Tyro JsonLib BaseLib WidgetLib "${wxWidgets_LIBRARIES}" "${Libssh2_LIBRARIES}")
target_link_libraries(Tyro JsonLib BaseLib WidgetLib ${wxWidgets_LIBRARIES} ${Libssh2_LIBRARIES})
################################################################################
# Tests
@ -104,5 +104,5 @@ file(GLOB test_SRC
)
add_executable(test_runner ${test_SRC})
target_link_libraries(test_runner BaseLib WidgetLib "${wxWidgets_LIBRARIES}" "${Libssh2_LIBRARIES}")
target_link_libraries(test_runner ${wxWidgets_LIBRARIES} ${Libssh2_LIBRARIES} JsonLib BaseLib WidgetLib)