feat(Spellchecking): Add bottle for spellchecking
Usage: ```qml SpellChecker { id: spellchecker lang: "en" } ``` Closes: #3442
This commit is contained in:
parent
df29177389
commit
d3c9564d91
9
Makefile
9
Makefile
|
@ -107,7 +107,10 @@ bottles/openssl:
|
|||
bottles/pcre: bottles/openssl
|
||||
./scripts/fetch-brew-bottle.sh pcre
|
||||
|
||||
bottles: bottles/openssl bottles/pcre
|
||||
bottles/hunspell: bottles/hunspell
|
||||
./scripts/fetch-brew-bottle.sh hunspell
|
||||
|
||||
bottles: bottles/openssl bottles/pcre bottles/hunspell
|
||||
endif
|
||||
|
||||
deps: | deps-common bottles
|
||||
|
@ -130,6 +133,10 @@ ifneq ($(detected_OS),Windows)
|
|||
# Fix for failures due to 'can't allocate code signature data for'
|
||||
NIM_PARAMS += --passL:"-headerpad_max_install_names"
|
||||
NIM_PARAMS += --passL:"-F$(QT5_LIBDIR)"
|
||||
|
||||
HUNSPELL := bottles/hunspell/lib/libhunspell-1.7.a
|
||||
NIM_PARAMS += --passL:"$(HUNSPELL)"
|
||||
|
||||
export QT5_LIBDIR
|
||||
else
|
||||
NIM_PARAMS += --passL:"-L$(QT5_LIBDIR)"
|
||||
|
|
|
@ -1 +1 @@
|
|||
Subproject commit 96d1ad594af98814d6032bf7127923b86a8ba346
|
||||
Subproject commit 9da380cf964df3bcddbbd4ac929223a322523465
|
Loading…
Reference in New Issue