52 lines
1.2 KiB
Prolog
52 lines
1.2 KiB
Prolog
#-------------------------------------------------
|
|
#
|
|
# Project created by QtCreator 2016-07-27T17:08:56
|
|
#
|
|
#-------------------------------------------------
|
|
|
|
QT += core gui sql network
|
|
|
|
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets opengl
|
|
|
|
TARGET = tenmon
|
|
TEMPLATE = app
|
|
|
|
CONFIG += c++11
|
|
|
|
QMAKE_CXXFLAGS += -fopenmp
|
|
|
|
unix: CONFIG += link_pkgconfig
|
|
unix: PKGCONFIG += libraw_r cfitsio gsl libexif opencv4
|
|
|
|
win32:LIBS += -lraw -lexif -lcfitsio -lgsl -lgslcblas -lopencv_imgproc -lopencv_core -fopenmp
|
|
win32:LIBS += -LC:\msys64\mingw64\lib -LC:\msys64\mingw64\bin
|
|
win32:INCLUDEPATH += C:\msys64\mingw64\include\ C:\msys64\mingw64\include\cfitsio
|
|
|
|
SOURCES += main.cpp\
|
|
filesystemwidget.cpp \
|
|
mainwindow.cpp \
|
|
imagescrollarea.cpp \
|
|
imageringlist.cpp \
|
|
database.cpp \
|
|
loadrunable.cpp \
|
|
imageinfo.cpp \
|
|
starfit.cpp \
|
|
imagescrollareagl.cpp \
|
|
stretchpanel.cpp \
|
|
rawimage.cpp
|
|
|
|
HEADERS += mainwindow.h \
|
|
filesystemwidget.h \
|
|
imagescrollarea.h \
|
|
imageringlist.h \
|
|
database.h \
|
|
loadrunable.h \
|
|
imageinfo.h \
|
|
rawimage.h \
|
|
starfit.h \
|
|
imagescrollareagl.h \
|
|
stretchpanel.h
|
|
|
|
RESOURCES += \
|
|
resources.qrc
|