-
Notifications
You must be signed in to change notification settings - Fork 2
/
qOrbit.pro
64 lines (57 loc) · 1.42 KB
/
qOrbit.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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
#-------------------------------------------------
#
# Project created by QtCreator 2014-08-13T17:54:37
#
#-------------------------------------------------
QT += core gui
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
TARGET = qOrbit
TEMPLATE = app
INCLUDEPATH += libsgp4
SOURCES += main.cpp \
qOrbit.cpp \
qPolarView.cpp \
QSimpleSatelliteMap.cpp \
libsgp4/CoordGeodetic.cpp \
libsgp4/CoordTopocentric.cpp \
libsgp4/DateTime.cpp \
libsgp4/Eci.cpp \
libsgp4/Globals.cpp \
libsgp4/Observer.cpp \
libsgp4/OrbitalElements.cpp \
libsgp4/SGP4.cpp \
libsgp4/SolarPosition.cpp \
libsgp4/TimeSpan.cpp \
libsgp4/Tle.cpp \
libsgp4/Util.cpp \
libsgp4/Vector.cpp \
PassTable.cpp \
PassDetails.cpp \
PassCalculator.cpp
HEADERS += qorbit.h \
Footprint.h \
QSimpleSatelliteMap.h \
Satellite.h \
ui_qorbit.h \
qPolarView.h \
libsgp4/CoordGeodetic.h \
libsgp4/CoordTopocentric.h \
libsgp4/DateTime.h \
libsgp4/DecayedException.h \
libsgp4/Eci.h \
libsgp4/Globals.h \
libsgp4/Observer.h \
libsgp4/OrbitalElements.h \
libsgp4/SatelliteException.h \
libsgp4/SGP4.h \
libsgp4/SolarPosition.h \
libsgp4/TimeSpan.h \
libsgp4/Tle.h \
libsgp4/TleException.h \
libsgp4/Util.h \
libsgp4/Vector.h \
qpredict_footprint.h \
PassTable.h \
PassDetails.h \
PassCalculator.h
FORMS += qorbit.ui