feat: spellcheck input (#6446)

Reviewed-by: Mm2PL <mm2pl+gh@kotmisia.pl>
Reviewed-by: pajlada <rasmus.karlsson@pajlada.com>
Reviewed-by: fourtf <tf.four@gmail.com>
This commit is contained in:
Nerixyz
2026-01-02 15:56:29 +01:00
committed by GitHub
parent f4212028d6
commit 95bc67fea0
33 changed files with 854 additions and 14 deletions
+2 -1
View File
@@ -6,13 +6,14 @@ from os import path
class Chatterino(ConanFile):
name = "Chatterino"
requires = "boost/1.86.0"
requires = "boost/1.86.0", "hunspell/1.7.2"
settings = "os", "compiler", "build_type", "arch"
default_options = {
"with_benchmark": False,
"with_openssl3": True,
"openssl*:shared": True,
"boost*:header_only": True,
"hunspell*:shared": False,
}
options = {
"with_benchmark": [True, False],