forked from muldjord/skyscraper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
skyscraper.pro
111 lines (102 loc) · 3.52 KB
/
skyscraper.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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
TEMPLATE = app
TARGET = Skyscraper
DEPENDPATH += .
INCLUDEPATH += .
CONFIG += release
QT += core network xml
QMAKE_CXXFLAGS += -std=c++11
unix:target.path=/usr/local/bin
unix:target.files=Skyscraper
unix:examples.path=/usr/local/etc/skyscraper
unix:examples.files=config.ini.example README.md artwork.xml artwork.xml.example1 artwork.xml.example2 artwork.xml.example3 artwork.xml.example4 mameMap.csv ARTWORK.md
unix:dbexamples.path=/usr/local/etc/skyscraper/dbs
unix:dbexamples.files=dbs/priorities.xml.example dbs/README.md
unix:impexamples.path=/usr/local/etc/skyscraper/import
unix:impexamples.files=import/README.md import/definitions.dat.example1 import/definitions.dat.example2
unix:resexamples.path=/usr/local/etc/skyscraper/resources
unix:resexamples.files=resources/maskexample.png resources/frameexample.png resources/boxfront.png resources/boxside.png
INSTALLS += target examples dbexamples impexamples resexamples
include(./VERSION)
DEFINES+=VERSION=\\\"$$VERSION\\\"
HEADERS += src/skyscraper.h \
src/netcomm.h \
src/xmlreader.h \
src/settings.h \
src/compositor.h \
src/strtools.h \
src/imgtools.h \
src/scraperworker.h \
src/localdb.h \
src/localscraper.h \
src/importscraper.h \
src/gameentry.h \
src/abstractscraper.h \
src/abstractfrontend.h \
src/emulationstation.h \
src/attractmode.h \
src/openretro.h \
src/thegamesdb.h \
src/worldofspectrum.h \
src/screenscraper.h \
src/arcadedb.h \
src/scripter.h \
src/platform.h \
src/layer.h \
src/fxshadow.h \
src/fxblur.h \
src/fxmask.h \
src/fxframe.h \
src/fxrounded.h \
src/fxstroke.h \
src/fxbrightness.h \
src/fxcontrast.h \
src/fxbalance.h \
src/fxopacity.h \
src/fxgamebox.h \
src/fxhue.h \
src/fxsaturation.h \
src/fxcolorize.h \
src/fxrotate.h \
src/nametools.h \
src/queue.h
SOURCES += src/main.cpp \
src/skyscraper.cpp \
src/netcomm.cpp \
src/xmlreader.cpp \
src/compositor.cpp \
src/strtools.cpp \
src/imgtools.cpp \
src/scraperworker.cpp \
src/localdb.cpp \
src/localscraper.cpp \
src/importscraper.cpp \
src/gameentry.cpp \
src/abstractscraper.cpp \
src/abstractfrontend.cpp \
src/emulationstation.cpp \
src/attractmode.cpp \
src/openretro.cpp \
src/thegamesdb.cpp \
src/worldofspectrum.cpp \
src/screenscraper.cpp \
src/arcadedb.cpp \
src/scripter.cpp \
src/platform.cpp \
src/layer.cpp \
src/fxshadow.cpp \
src/fxblur.cpp \
src/fxmask.cpp \
src/fxframe.cpp \
src/fxrounded.cpp \
src/fxstroke.cpp \
src/fxbrightness.cpp \
src/fxcontrast.cpp \
src/fxbalance.cpp \
src/fxopacity.cpp \
src/fxgamebox.cpp \
src/fxhue.cpp \
src/fxsaturation.cpp \
src/fxcolorize.cpp \
src/fxrotate.cpp \
src/nametools.cpp \
src/queue.cpp