Skip to content

Commit 38340be

Browse files
committed
Fix broken pkgconfig file
1 parent bdc5d08 commit 38340be

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ cmake_policy(SET CMP0063 NEW)
33

44
# Project properties
55
PROJECT(qtspell)
6-
SET(QTSPELL_VERSION 1.0)
6+
SET(QTSPELL_VERSION 1.0.1)
77
set(CMAKE_C_VISIBILITY_PRESET hidden)
88
set(CMAKE_CXX_VISIBILITY_PRESET hidden)
99
set(CMAKE_VISIBILITY_INLINES_HIDDEN 1)

NEWS

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
qtspell 1.0.1 (Jan 14 2022):
2+
* Fix broken pkg-config file
3+
14
qtspell 1.0 (Jan 14 2022):
25
* Add Qt6 support
36
* Fix undo/redo not correctly re-enabled after detach/attach

QtSpell.pc.in

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
prefix=@CMAKE_INSTALL_PREFIX@
22
libdir=${prefix}/@PC_LIB_DIR@
3-
includedir=${prefix}/@PC_INCLUDE_DIR@/QtSpell-@QT_VER@
3+
includedir=${prefix}/@PC_INCLUDE_DIR@/QtSpell-qt@QT_VER@
44

55
Name: qtspell
66
Description: Spell checking for Qt text widgets.
77
Version: @QTSPELL_VERSION@
8-
Libs: -L${libdir} -lqtspell-@QT_VER@
8+
Libs: -L${libdir} -lqtspell-qt@QT_VER@
99
Cflags: -I${includedir}

0 commit comments

Comments
 (0)