Still not ideal as it is not straightforward to add options to places like the Video class. Signed-off-by: Andrea Odetti <mariofutire@gmail.com>
59 lines
1.1 KiB
Prolog
59 lines
1.1 KiB
Prolog
#-------------------------------------------------
|
|
#
|
|
# Project created by QtCreator 2017-07-02T20:14:02
|
|
#
|
|
#-------------------------------------------------
|
|
|
|
QT += core gui
|
|
|
|
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets gamepad
|
|
|
|
TARGET = qapple
|
|
TEMPLATE = app
|
|
|
|
|
|
SOURCES += main.cpp\
|
|
qapple.cpp \
|
|
qresources.cpp \
|
|
emulator.cpp \
|
|
video.cpp \
|
|
graphicscache.cpp \
|
|
chunks.cpp \
|
|
commands.cpp \
|
|
qhexedit.cpp \
|
|
memorycontainer.cpp \
|
|
preferences.cpp \
|
|
gamepadpaddle.cpp \
|
|
settings.cpp \
|
|
configuration.cpp
|
|
|
|
HEADERS += qapple.h \
|
|
emulator.h \
|
|
video.h \
|
|
graphicscache.h \
|
|
chunks.h \
|
|
commands.h \
|
|
qhexedit.h \
|
|
memorycontainer.h \
|
|
preferences.h \
|
|
gamepadpaddle.h \
|
|
settings.h \
|
|
configuration.h
|
|
|
|
FORMS += qapple.ui \
|
|
emulator.ui \
|
|
memorycontainer.ui \
|
|
preferences.ui
|
|
|
|
RESOURCES += \
|
|
qapple.qrc
|
|
|
|
unix: LIBS += -L$$PWD/../../ -lappleii
|
|
|
|
INCLUDEPATH += $$PWD/../../../source
|
|
DEPENDPATH += $$PWD/../../../source
|
|
|
|
unix: LIBS += -levdev
|
|
|
|
unix:QMAKE_RPATHDIR += $ORIGIN/../..
|
|
|