-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathOriginSimulator.pro
More file actions
53 lines (47 loc) · 1.37 KB
/
OriginSimulator.pro
File metadata and controls
53 lines (47 loc) · 1.37 KB
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
43
44
45
46
47
48
49
50
51
52
53
QT += core widgets network
CONFIG += c++11
TARGET = OriginSimulator
TEMPLATE = app
INCLUDEPATH += healpixmirror/src/cxx/Healpix_cxx
INCLUDEPATH += healpixmirror/src/cxx/cxxsupport
LIBS += -lnova -ltiff
# For Apple Silicon Macs, use:
INCLUDEPATH += /opt/homebrew/include
LIBPATH += /opt/homebrew/lib
# Sources
SOURCES += \
main.cpp \
CelestronOriginSimulator.cpp \
WebSocketConnection.cpp \
CommandHandler.cpp \
TiffImageGenerator.cpp \
StatusSender.cpp \
ProperHipsClient.cpp \
EnhancedMosaicCreator.cpp \
healpixmirror/src/cxx/Healpix_cxx/healpix_base.cc \
healpixmirror/src/cxx/Healpix_cxx/healpix_tables.cc \
healpixmirror/src/cxx/cxxsupport/geom_utils.cc \
healpixmirror/src/cxx/cxxsupport/string_utils.cc \
healpixmirror/src/cxx/cxxsupport/error_handling.cc \
healpixmirror/src/cxx/cxxsupport/pointing.cc \
moc_CelestronOriginSimulator.cpp \
moc_CommandHandler.cpp \
moc_EnhancedMosaicCreator.cpp \
moc_ProperHipsClient.cpp \
moc_StatusSender.cpp \
moc_WebSocketConnection.cpp \
# Headers
HEADERS += \
TelescopeState.h \
CelestronOriginSimulator.h \
WebSocketConnection.h \
CommandHandler.h \
TiffImageGenerator.h \
StatusSender.h \
moc_predefs.h \
# For Xcode project generation
macx {
QMAKE_MACOSX_DEPLOYMENT_TARGET = 10.15
}
# Enable debug output
CONFIG += debug_and_release