2021-07-02 09:19:02 +00:00
|
|
|
QT += core gui
|
2021-03-08 01:26:04 +00:00
|
|
|
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
|
2021-05-30 07:59:42 +00:00
|
|
|
greaterThan(QT_MAJOR_VERSION, 5): QT += core5compat
|
2021-03-08 01:26:04 +00:00
|
|
|
|
|
|
|
TARGET = smoothcurve
|
|
|
|
TEMPLATE = app
|
|
|
|
DESTDIR = $$PWD/../bin
|
|
|
|
CONFIG += warn_off
|
|
|
|
|
|
|
|
SOURCES += main.cpp
|
|
|
|
SOURCES += frmsmoothcurve.cpp
|
|
|
|
SOURCES += smoothcurve.cpp
|
|
|
|
|
|
|
|
HEADERS += frmsmoothcurve.h
|
|
|
|
HEADERS += smoothcurve.h
|
|
|
|
|
|
|
|
FORMS += frmsmoothcurve.ui
|