40 lines
846 B
Prolog
40 lines
846 B
Prolog
#-------------------------------------------------
|
|
#
|
|
# Project created by QtCreator 2016-07-27T17:08:56
|
|
#
|
|
#-------------------------------------------------
|
|
|
|
QT += core gui sql
|
|
|
|
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
|
|
|
|
TARGET = tenmon
|
|
TEMPLATE = app
|
|
|
|
CONFIG += c++11
|
|
|
|
QMAKE_CXXFLAGS += -fopenmp
|
|
|
|
LIBS += -lraw -lexif -lcfitsio -lgsl -lgslcblas -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\
|
|
mainwindow.cpp \
|
|
imagescrollarea.cpp \
|
|
imageringlist.cpp \
|
|
database.cpp \
|
|
loadrunable.cpp \
|
|
imageinfo.cpp \
|
|
starfit.cpp
|
|
|
|
HEADERS += mainwindow.h \
|
|
imagescrollarea.h \
|
|
imageringlist.h \
|
|
database.h \
|
|
loadrunable.h \
|
|
imageinfo.h \
|
|
rawimage.h \
|
|
starfit.h
|