initial commit

This commit is contained in:
mikhail "synzr" 2025-12-25 01:37:49 +05:00
commit 9d20827c46
2469 changed files with 470994 additions and 0 deletions

31
conf_windows.pri Normal file
View file

@ -0,0 +1,31 @@
# Windows build settings
CONFIG += release
CONFIG += qca-static
# tell iris to use our internal libz
CONFIG += psi-zip
# OpenSSL
qca-static {
DEFINES += HAVE_OPENSSL
DEFINES += OSSL_097
OPENSSL_PREFIX = $$PWD/../vendor/openssl
INCLUDEPATH += $$OPENSSL_PREFIX/include
LIBS += -L$$OPENSSL_PREFIX/lib
}
# SASL
#qca-static {
# CYRUSSASL_PREFIX = /local
# INCLUDEPATH += $$CYRUSSASL_PREFIX/include
# LIBS += $$CYRUSSASL_PREFIX/lib/libsasl.lib
#}
# ASpell
#DEFINES += HAVE_ASPELL
contains(DEFINES, HAVE_ASPELL) {
ASPELL_PREFIX = ../../../aspell
INCLUDEPATH += "$$ASPELL_PREFIX/include"
LIBS += -L"$$ASPELL_PREFIX/lib"
LIBS += -laspell-15
}