Warning, /frameworks/sonnet/src/core/sonnet-core.pro is written in an unsupported language. File is not indexed.

0001 TARGET = sonnet-core
0002 TEMPLATE = lib
0003 CONFIG += staticlib c++11
0004 QT -= gui
0005 
0006 SOURCES += loader.cpp \
0007            client.cpp \
0008            spellerplugin.cpp \
0009            speller.cpp \
0010            settings.cpp \
0011            backgroundchecker.cpp \
0012            guesslanguage.cpp \
0013            textbreaks.cpp \
0014            tokenizer.cpp \
0015            languagefilter.cpp
0016 
0017 HEADERS += client_p.h \
0018            loader_p.h
0019 
0020 DEFINES += SONNETCORE_EXPORT=""
0021 DEFINES += INSTALLATION_PLUGIN_PATH=""
0022 DEFINES += SONNET_STATIC
0023 
0024 unix:system("touch sonnetcore_export.h")
0025 win32:system("type nul > sonnetcore_export.h")
0026