2014-11-21 17:47:58 +08:00
|
|
|
#-------------------------------------------------
|
|
|
|
|
#
|
|
|
|
|
# Project created by QtCreator 2014-11-21T17:47:12
|
|
|
|
|
#
|
|
|
|
|
#-------------------------------------------------
|
|
|
|
|
|
|
|
|
|
QT += core
|
2014-11-22 11:32:12 +08:00
|
|
|
QT +=xml
|
2014-11-21 17:47:58 +08:00
|
|
|
|
|
|
|
|
QT -= gui
|
|
|
|
|
|
|
|
|
|
TARGET = testHasttable
|
|
|
|
|
CONFIG += console
|
|
|
|
|
CONFIG -= app_bundle
|
|
|
|
|
|
|
|
|
|
TEMPLATE = app
|
|
|
|
|
|
|
|
|
|
|
2014-11-22 11:32:12 +08:00
|
|
|
SOURCES += main.cpp \
|
|
|
|
|
elementhashtable.cpp \
|
|
|
|
|
subcontrolarea.cpp \
|
2014-11-22 16:27:22 +08:00
|
|
|
BasicElementInfo.cpp \
|
2014-11-22 22:18:18 +08:00
|
|
|
regexextract.cpp \
|
|
|
|
|
busbarsection.cpp \
|
|
|
|
|
terminal.cpp \
|
|
|
|
|
aclinesegment.cpp \
|
|
|
|
|
breaker.cpp \
|
|
|
|
|
compensator.cpp \
|
|
|
|
|
disconnector.cpp \
|
|
|
|
|
powertransformer.cpp \
|
2014-11-26 17:09:37 +08:00
|
|
|
synchronousmachine.cpp \
|
2014-12-06 21:48:07 +08:00
|
|
|
nodetoterminal.cpp \
|
2014-12-11 19:57:55 +08:00
|
|
|
topologyrecorder.cpp \
|
2014-12-26 21:21:58 +08:00
|
|
|
substation.cpp \
|
|
|
|
|
cimexporter.cpp \
|
|
|
|
|
element/branch.cpp \
|
2014-12-27 21:45:46 +08:00
|
|
|
element/line.cpp \
|
2014-12-27 21:50:51 +08:00
|
|
|
element/transformer.cpp \
|
2015-01-06 20:51:19 +08:00
|
|
|
element/switch.cpp \
|
2015-01-15 20:05:44 +08:00
|
|
|
task.cpp \
|
|
|
|
|
loadmapping.cpp \
|
2015-01-15 21:56:30 +08:00
|
|
|
recursedir.cpp \
|
2015-01-15 22:47:49 +08:00
|
|
|
loadinfo.cpp \
|
2015-01-19 14:54:36 +08:00
|
|
|
loadmatchexception.cpp \
|
|
|
|
|
dgmapping.cpp \
|
2015-01-20 20:50:38 +08:00
|
|
|
dginfo.cpp \
|
|
|
|
|
topologytest.cpp
|
2014-11-22 11:32:12 +08:00
|
|
|
|
|
|
|
|
HEADERS += \
|
|
|
|
|
elementhashtable.h \
|
|
|
|
|
BasicElementInfo.h \
|
2014-11-22 16:27:22 +08:00
|
|
|
subcontrolarea.h \
|
2014-11-22 22:18:18 +08:00
|
|
|
regexextract.h \
|
|
|
|
|
busbarsection.h \
|
|
|
|
|
terminal.h \
|
|
|
|
|
aclinesegment.h \
|
|
|
|
|
breaker.h \
|
|
|
|
|
compensator.h \
|
|
|
|
|
disconnector.h \
|
|
|
|
|
powertransformer.h \
|
2014-11-26 17:09:37 +08:00
|
|
|
synchronousmachine.h \
|
2014-12-06 21:48:07 +08:00
|
|
|
nodetoterminal.h \
|
2014-12-11 19:57:55 +08:00
|
|
|
topologyrecorder.h \
|
2014-12-26 21:21:58 +08:00
|
|
|
substation.h \
|
|
|
|
|
cimexporter.h \
|
|
|
|
|
element/branch.h \
|
2014-12-27 21:45:46 +08:00
|
|
|
element/line.h \
|
2014-12-27 21:50:51 +08:00
|
|
|
element/transformer.h \
|
2015-01-06 20:51:19 +08:00
|
|
|
element/switch.h \
|
2015-01-15 20:05:44 +08:00
|
|
|
task.h \
|
|
|
|
|
loadmapping.h \
|
2015-01-15 21:56:30 +08:00
|
|
|
recursedir.h \
|
2015-01-15 22:06:19 +08:00
|
|
|
loadinfo.h \
|
2015-01-15 22:47:49 +08:00
|
|
|
singletonbase.h \
|
2015-01-19 14:54:36 +08:00
|
|
|
loadmatchexception.h \
|
|
|
|
|
dgmapping.h \
|
2015-01-20 20:50:38 +08:00
|
|
|
dginfo.h \
|
|
|
|
|
topologytest.h
|
2014-11-22 11:32:12 +08:00
|
|
|
|
|
|
|
|
#release{
|
2014-11-24 22:01:30 +08:00
|
|
|
DEFINES += QT_NO_DEBUG_OUTPUT
|
2014-11-22 11:32:12 +08:00
|
|
|
#}
|