diff options
author | Michael Vetter <jubalh@iodoru.org> | 2023-03-13 11:19:43 +0100 |
---|---|---|
committer | Marvin W <git@larma.de> | 2023-03-21 17:57:07 -0600 |
commit | ecf94dd2e699302dabe1a0e0800c36e5455934f0 (patch) | |
tree | ea91a93d276231259dada42fb7d72c1b036a748d /cmake | |
parent | 57d47b95754dbdef5f568e233fcb90b181b3c75c (diff) | |
download | dino-ecf94dd2e699302dabe1a0e0800c36e5455934f0.tar.gz dino-ecf94dd2e699302dabe1a0e0800c36e5455934f0.zip |
Remove gspell
7e7dcedaf ported from GTK3 to GTK4.
It also removed gspell from main/CMakeLists.txt.
I assume that gspell is not needed anymore and we can thus remove the
requirement from the CI and the cmake file as well.
Diffstat (limited to 'cmake')
-rw-r--r-- | cmake/FindGspell.cmake | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/cmake/FindGspell.cmake b/cmake/FindGspell.cmake deleted file mode 100644 index de29ed1d..00000000 --- a/cmake/FindGspell.cmake +++ /dev/null @@ -1,14 +0,0 @@ -include(PkgConfigWithFallback) -find_pkg_config_with_fallback(Gspell - PKG_CONFIG_NAME gspell-1 - LIB_NAMES gspell-1 - INCLUDE_NAMES gspell.h - INCLUDE_DIR_SUFFIXES gspell-1 gspell-1/gspell - DEPENDS GTK3 -) - -include(FindPackageHandleStandardArgs) -find_package_handle_standard_args(Gspell - REQUIRED_VARS Gspell_LIBRARY - VERSION_VAR Gspell_VERSION) - |