diff --git a/CMakeLists.txt b/CMakeLists.txt index 4bd47318e..f140c08fd 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -72,6 +72,10 @@ set(LUA_MODULES_PATH "Path to the directory with native Lua modules (only relevant if system-wide Lua installation is used)" ) +if (NOT USE_SYSTEM_LIBSSH2) + set(USE_SSH "localbuild") +endif() + # Require C++17. set(CMAKE_CXX_STANDARD 17) set(CMAKE_CXX_STANDARD_REQUIRED TRUE) diff --git a/LICENSE.md b/LICENSE.md index 4722beb8b..2d7800c59 100644 --- a/LICENSE.md +++ b/LICENSE.md @@ -1,7 +1,7 @@ MIT License Copyright (c) 2018 Scientific Toolworks, Inc. -Copyright (c) 2021-2024 Gittyup contributors +Copyright (c) 2021-2025 Gittyup contributors Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/src/ui/CMakeLists.txt b/src/ui/CMakeLists.txt index 79d96f803..a2e71f78e 100644 --- a/src/ui/CMakeLists.txt +++ b/src/ui/CMakeLists.txt @@ -75,6 +75,7 @@ target_link_libraries( tools update watcher + ${LIBSSH2_LIBRARIES} Qt5::Concurrent Qt5::Network Qt5::Widgets)