Skip to content

Commit

Permalink
Fix broken pkgconfig file
Browse files Browse the repository at this point in the history
  • Loading branch information
manisandro committed Jan 14, 2022
1 parent bdc5d08 commit 38340be
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
3 changes: 3 additions & 0 deletions NEWS
Original file line number Diff line number Diff line change
@@ -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
Expand Down
4 changes: 2 additions & 2 deletions QtSpell.pc.in
Original file line number Diff line number Diff line change
@@ -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}

0 comments on commit 38340be

Please sign in to comment.