most files - check if this is all we need

This commit is contained in:
2025-06-10 11:43:29 +02:00
parent 34244cacb5
commit 0fa6f49d7f
28 changed files with 9004 additions and 0 deletions

47
SeaClient.pro Normal file
View File

@ -0,0 +1,47 @@
TEMPLATE = app
LANGUAGE = C++
CONFIG += qt-mt warn_on thread debug static
QMAKE_CXXFLAGS_WARN_ON += -Wno-non-virtual-dtor -Wno-unused-parameter -Wno-write-strings \
-Wno-unused-but-set-variable -Wno-type-limits
LIBS += -L$$(QWTDIR)/lib -lqwt
INCLUDEPATH += $$(QTDIR)/include
INCLUDEPATH += $$(QWTDIR)/include
HEADERS += main.h \
seaset.h \
seaplot.h \
sicsconn.h \
tab.h \
settings.h \
command.h \
graph.h \
utils.h \
export.h \
report.h \
device.h
SOURCES += main.cpp \
seaset.cpp \
seaplot.cpp \
instr_hosts.cpp \
sicsconn.cpp \
tab.cpp \
settings.cpp \
command.cpp \
graph.cpp \
utils.cpp \
export.cpp \
report.cpp \
device.cpp
unix {
UI_DIR = .ui
MOC_DIR = .moc
OBJECTS_DIR = $$(linuxsys)
DESTDIR = $$(linuxsys)
}