aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorIngo Klöcker <[email protected]>2023-07-08 18:54:14 +0000
committerIngo Klöcker <[email protected]>2023-07-08 19:49:12 +0000
commitad34fcbbec3fc3a1a7d1232afd2e4f55119e2cb6 (patch)
tree309a12a594c8ff3e3f3b4c8d616e6d3574182845
parentPost release updates (diff)
downloadgpgme-ad34fcbbec3fc3a1a7d1232afd2e4f55119e2cb6.tar.gz
gpgme-ad34fcbbec3fc3a1a7d1232afd2e4f55119e2cb6.zip
qt: Fix check for required files
* lang/qt/src/QGpgmeConfig-w32.cmake.in.in: Fix typos in variable names. -- Because of those typos the loop over the files to check was an empty loops and therefore the wrong name of the DLL was never noticed.
-rw-r--r--lang/qt/src/QGpgmeConfig-w32.cmake.in.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/lang/qt/src/QGpgmeConfig-w32.cmake.in.in b/lang/qt/src/QGpgmeConfig-w32.cmake.in.in
index b8978053..dbd466c6 100644
--- a/lang/qt/src/QGpgmeConfig-w32.cmake.in.in
+++ b/lang/qt/src/QGpgmeConfig-w32.cmake.in.in
@@ -68,8 +68,8 @@ set_target_properties(QGpgme PROPERTIES
IMPORTED_LOCATION "@resolved_libdir@/libqgpgme-7.dll"
)
-list(APPEND _IMPORT_CHECK_TARGETS QGgpme )
-list(APPEND _IMPORT_CHECK_FILES_FOR_Qgpgme "@resolved_libdir@/libqgpgme.dll.a" "@resolved_bindir@/libqgpgme-7.dll" )
+list(APPEND _IMPORT_CHECK_TARGETS QGpgme )
+list(APPEND _IMPORT_CHECK_FILES_FOR_QGpgme "@resolved_libdir@/libqgpgme.dll.a" "@resolved_bindir@/libqgpgme-7.dll" )
if(CMAKE_VERSION VERSION_LESS 2.8.12)
message(FATAL_ERROR "This file relies on consumers using CMake 2.8.12 or greater.")