This repository has been archived by the owner on Apr 23, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathhst-reader.pro
42 lines (35 loc) · 1.48 KB
/
hst-reader.pro
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
###############################################################################
# #
# Hst to Csv Converter Project #
# web.site.com #
# #
# H S T - R E A D E R P R O G R A M #
# #
# Aleksey Terentew #
# #
###############################################################################
QT += core gui
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
TARGET = hst-reader
TEMPLATE = app
RC_FILE = src/hst-reader.rc
SOURCES += src/main.cpp\
src/mainwindow.cpp \
src/imt4reader.cpp \
src/hstreader.cpp \
src/csvreader.cpp \
src/csvwriter.cpp \
src/csvpredictionwriter.cpp
HEADERS += include/mainwindow.h \
include/imt4reader.h \
include/hstreader.h \
include/csvreader.h \
include/csvwriter.h \
include/csvpredictionwriter.h
FORMS += mainwindow.ui
win32-g++{
QMAKE_LFLAGS += -static-libgcc
QMAKE_LFLAGS += -static-libstdc++
QMAKE_LFLAGS += -static
}