From 38340be49a7a6a823fa5d9fa7d7589e2ab148a85 Mon Sep 17 00:00:00 2001 From: Sandro Mani Date: Fri, 14 Jan 2022 16:34:06 +0100 Subject: [PATCH] Fix broken pkgconfig file --- CMakeLists.txt | 2 +- NEWS | 3 +++ QtSpell.pc.in | 4 ++-- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6abffe9..fcb4c8f 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -3,7 +3,7 @@ cmake_policy(SET CMP0063 NEW) # Project properties PROJECT(qtspell) -SET(QTSPELL_VERSION 1.0) +SET(QTSPELL_VERSION 1.0.1) set(CMAKE_C_VISIBILITY_PRESET hidden) set(CMAKE_CXX_VISIBILITY_PRESET hidden) set(CMAKE_VISIBILITY_INLINES_HIDDEN 1) diff --git a/NEWS b/NEWS index e433ca5..6a76792 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,6 @@ +qtspell 1.0.1 (Jan 14 2022): +* Fix broken pkg-config file + qtspell 1.0 (Jan 14 2022): * Add Qt6 support * Fix undo/redo not correctly re-enabled after detach/attach diff --git a/QtSpell.pc.in b/QtSpell.pc.in index bd6fe1a..5534d94 100644 --- a/QtSpell.pc.in +++ b/QtSpell.pc.in @@ -1,9 +1,9 @@ prefix=@CMAKE_INSTALL_PREFIX@ libdir=${prefix}/@PC_LIB_DIR@ -includedir=${prefix}/@PC_INCLUDE_DIR@/QtSpell-@QT_VER@ +includedir=${prefix}/@PC_INCLUDE_DIR@/QtSpell-qt@QT_VER@ Name: qtspell Description: Spell checking for Qt text widgets. Version: @QTSPELL_VERSION@ -Libs: -L${libdir} -lqtspell-@QT_VER@ +Libs: -L${libdir} -lqtspell-qt@QT_VER@ Cflags: -I${includedir}