96 lines
2.0 KiB
Prolog
96 lines
2.0 KiB
Prolog
#-------------------------------------------------
|
|
#
|
|
# Project created by QtCreator 2015-04-06T11:16:08
|
|
#
|
|
#-------------------------------------------------
|
|
|
|
QT += core gui sql webkitwidgets network webkit
|
|
|
|
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
|
|
|
|
TARGET = MorphereAnalyzer
|
|
TEMPLATE = app
|
|
|
|
|
|
|
|
SOURCES += main.cpp\
|
|
mainwindow.cpp \
|
|
widget.cpp \
|
|
stable.cpp \
|
|
../Json/sjson.cpp \
|
|
sanaly1.cpp \
|
|
sanaly2.cpp \
|
|
sanalyzer.cpp \
|
|
sdictionary.cpp \
|
|
keywordthread.cpp \
|
|
tablealgorithm_interface.cpp \
|
|
yalgorithm.cpp \
|
|
ymorpherethread.cpp \
|
|
ychildrenthread.cpp \
|
|
ymorpherewidget.cpp \
|
|
ymbasicwidget.cpp \
|
|
ymonedepthwidget.cpp \
|
|
ymnxnmatrixwidget.cpp \
|
|
ymfilter.cpp \
|
|
ymfilterchildren.cpp \
|
|
ymtwodepthwidget.cpp \
|
|
ymuploadwidget.cpp \
|
|
ymplatformwidget.cpp
|
|
|
|
|
|
HEADERS += mainwindow.h \
|
|
widget.h \
|
|
stable.h \
|
|
../Json/sjson.h \
|
|
../common.h \
|
|
sanaly1.h \
|
|
sanaly2.h \
|
|
char_property.h \
|
|
common.h \
|
|
connector.h \
|
|
context_id.h \
|
|
darts.h \
|
|
dictionary.h \
|
|
dictionary_rewriter.h \
|
|
feature_index.h \
|
|
freelist.h \
|
|
iconv_utils.h \
|
|
lbfgs.h \
|
|
learner_node.h \
|
|
learner_tagger.h \
|
|
mecab.h \
|
|
mmap.h \
|
|
nbest_generator.h \
|
|
param.h \
|
|
scoped_ptr.h \
|
|
stream_wrapper.h \
|
|
string_buffer.h \
|
|
thread.h \
|
|
tokenizer.h \
|
|
ucs.h \
|
|
ucstable.h \
|
|
utils.h \
|
|
viterbi.h \
|
|
winmain.h \
|
|
writer.h \
|
|
sanalyzer.h \
|
|
sdictionary.h \
|
|
keywordthread.h \
|
|
dataalgorithm_interface.h \
|
|
tablealgorithm_interface.h \
|
|
yalgorithm.h \
|
|
ymorpherethread.h \
|
|
ychildrenthread.h \
|
|
ymorpherewidget.h \
|
|
ymbasicwidget.h \
|
|
ymonedepthwidget.h \
|
|
ymnxnmatrixwidget.h \
|
|
ymfilter.h \
|
|
ymfilterchildren.h \
|
|
ymtwodepthwidget.h \
|
|
ymuploadwidget.h \
|
|
ymplatformwidget.h
|
|
|
|
|
|
FORMS += mainwindow.ui
|