-
Notifications
You must be signed in to change notification settings - Fork 45
/
Copy pathendless-sky-editor.pro
71 lines (61 loc) · 1.36 KB
/
endless-sky-editor.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
65
66
67
68
69
70
71
#-------------------------------------------------
#
# Project created by QtCreator 2015-04-30T20:16:36
#
#-------------------------------------------------
QT += core gui
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
TARGET = endless-sky-editor
TEMPLATE = app
CONFIG += c++11
target.path = /usr/games/
INSTALLS += target
desktop.path = /usr/share/applications/
desktop.files = endless-sky-editor.desktop
INSTALLS += desktop
manual.path = /usr/share/man/man6/
manual.files = endless-sky-editor.6
INSTALLS += manual
icon.path = /usr/share/icons/hicolor/48x48/apps/
icon.files = endless-sky-editor.png
INSTALLS += icon
macx {
ICON = endless-sky-editor.icns
QMAKE_INFO_PLIST = Info.plist
}
SOURCES += main.cpp\
DataFile.cpp\
DataNode.cpp\
DataWriter.cpp\
MainWindow.cpp\
Planet.cpp\
StellarObject.cpp\
System.cpp \
SystemView.cpp \
Map.cpp \
SpriteSet.cpp \
GalaxyView.cpp \
Galaxy.cpp \
DetailView.cpp \
AsteroidField.cpp \
PlanetView.cpp \
LandscapeView.cpp \
LandscapeLoader.cpp
HEADERS += DataFile.h\
DataNode.h\
DataWriter.h\
MainWindow.h\
Planet.h\
StellarObject.h\
System.h \
SystemView.h \
Map.h \
SpriteSet.h \
GalaxyView.h \
Galaxy.h \
DetailView.h \
AsteroidField.h \
PlanetView.h \
LandscapeView.h \
LandscapeLoader.h \
pi.h