Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/Remmina/Remmina.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAntenore Gatta (tmow) <antenore@simbiosi.org>2022-10-03 20:38:35 +0300
committerAntenore Gatta (tmow) <antenore@simbiosi.org>2022-10-03 20:38:35 +0300
commitedbaeb1b588edc0e969b0eedd731758aad369391 (patch)
tree9c865a0d2d6319d77c0c369819a37188837028c7 /src/CMakeLists.txt
parent30629c1629c7ac15f00340e8d205be59eade1ce9 (diff)
Multiple changes to build and run with libsoup 3.0
Diffstat (limited to 'src/CMakeLists.txt')
-rw-r--r--src/CMakeLists.txt8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt
index 8d7ddadbb..eb1fec2e0 100644
--- a/src/CMakeLists.txt
+++ b/src/CMakeLists.txt
@@ -255,10 +255,10 @@ if(GTK3_FOUND)
else()
message(FATAL_ERROR "json-glib library not found")
endif()
- find_required_package(LIBSOUP24)
- if(LIBSOUP24_FOUND)
- include_directories(${LIBSOUP24_INCLUDE_DIRS})
- target_link_libraries(remmina ${LIBSOUP24_LIBRARIES})
+ find_required_package(LIBSOUP)
+ if(LIBSOUP_FOUND)
+ include_directories(${LIBSOUP_INCLUDE_DIRS})
+ target_link_libraries(remmina ${LIBSOUP_LIBRARIES})
else()
message(FATAL_ERROR "libsoup 2.4 library not found")
endif()