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
path: root/cmake
diff options
context:
space:
mode:
authorAntenore Gatta <antenore@simbiosi.org>2020-05-19 10:13:37 +0300
committerAntenore Gatta <antenore@simbiosi.org>2020-05-19 10:13:37 +0300
commit710653254af8d25bccf2814f39d3ee17c437472c (patch)
tree40561d4b032992f7d3108745c8deb214663294f5 /cmake
parent04f664d943b83e367400f1249804f903b38ac30f (diff)
Autodetecting FreeRDP library version
Diffstat (limited to 'cmake')
-rw-r--r--cmake/FindFREERDP.cmake2
-rw-r--r--cmake/FindFREERDP3.cmake2
2 files changed, 2 insertions, 2 deletions
diff --git a/cmake/FindFREERDP.cmake b/cmake/FindFREERDP.cmake
index b8daf95a0..610c398e1 100644
--- a/cmake/FindFREERDP.cmake
+++ b/cmake/FindFREERDP.cmake
@@ -19,7 +19,7 @@
find_package(PkgConfig)
if(PKG_CONFIG_FOUND)
- pkg_check_modules(PC_FREERDP freerdp2>=${FREERDP_REQUIRED_VERSIONSTRING})
+ pkg_check_modules(PC_FREERDP freerdp2>=2.0.0)
endif()
set(FREERDP_DEFINITIONS ${PC_FREERDP_CFLAGS_OTHER})
diff --git a/cmake/FindFREERDP3.cmake b/cmake/FindFREERDP3.cmake
index 05d86c1c4..613552a90 100644
--- a/cmake/FindFREERDP3.cmake
+++ b/cmake/FindFREERDP3.cmake
@@ -19,7 +19,7 @@
find_package(PkgConfig)
if(PKG_CONFIG_FOUND)
- pkg_check_modules(PC_FREERDP3 freerdp3>=${FREERDP_REQUIRED_VERSIONSTRING})
+ pkg_check_modules(PC_FREERDP3 freerdp3>=3.0.0})
endif()
set(FREERDP3_DEFINITIONS ${PC_FREERDP3_CFLAGS_OTHER})