2017-07-02 20:55:56 +01:00
|
|
|
#-------------------------------------------------
|
|
|
|
#
|
|
|
|
# Project created by QtCreator 2017-07-02T20:14:02
|
|
|
|
#
|
|
|
|
#-------------------------------------------------
|
|
|
|
|
2019-11-09 21:43:35 +00:00
|
|
|
QT += core gui multimedia widgets gamepad
|
2017-07-02 20:55:56 +01:00
|
|
|
|
|
|
|
TARGET = qapple
|
|
|
|
TEMPLATE = app
|
|
|
|
|
|
|
|
|
|
|
|
SOURCES += main.cpp\
|
2019-12-01 14:29:13 +00:00
|
|
|
QHexView/document/buffer/qhexbuffer.cpp \
|
|
|
|
QHexView/document/buffer/qmemorybuffer.cpp \
|
|
|
|
QHexView/document/buffer/qmemoryrefbuffer.cpp \
|
|
|
|
QHexView/document/commands/hexcommand.cpp \
|
|
|
|
QHexView/document/commands/insertcommand.cpp \
|
|
|
|
QHexView/document/commands/removecommand.cpp \
|
|
|
|
QHexView/document/commands/replacecommand.cpp \
|
|
|
|
QHexView/document/qhexcursor.cpp \
|
|
|
|
QHexView/document/qhexdocument.cpp \
|
|
|
|
QHexView/document/qhexmetadata.cpp \
|
|
|
|
QHexView/document/qhexrenderer.cpp \
|
|
|
|
QHexView/qhexview.cpp \
|
2019-11-10 18:48:02 +00:00
|
|
|
audiogenerator.cpp \
|
2019-11-09 21:43:35 +00:00
|
|
|
loggingcategory.cpp \
|
2019-12-01 18:40:28 +00:00
|
|
|
options.cpp \
|
2019-11-09 21:43:35 +00:00
|
|
|
qapple.cpp \
|
2017-07-03 21:00:42 +01:00
|
|
|
qresources.cpp \
|
|
|
|
emulator.cpp \
|
2019-11-24 17:34:37 +00:00
|
|
|
registry.cpp \
|
2017-07-09 20:49:26 +01:00
|
|
|
video.cpp \
|
2017-09-19 20:47:15 +01:00
|
|
|
memorycontainer.cpp \
|
2017-10-06 20:48:14 +01:00
|
|
|
preferences.cpp \
|
2017-10-10 14:26:40 +01:00
|
|
|
gamepadpaddle.cpp \
|
2019-12-01 14:29:13 +00:00
|
|
|
viewbuffer.cpp
|
2017-07-02 20:55:56 +01:00
|
|
|
|
|
|
|
HEADERS += qapple.h \
|
2019-12-01 14:29:13 +00:00
|
|
|
QHexView/document/buffer/qhexbuffer.h \
|
|
|
|
QHexView/document/buffer/qmemorybuffer.h \
|
|
|
|
QHexView/document/buffer/qmemoryrefbuffer.h \
|
|
|
|
QHexView/document/commands/hexcommand.h \
|
|
|
|
QHexView/document/commands/insertcommand.h \
|
|
|
|
QHexView/document/commands/removecommand.h \
|
|
|
|
QHexView/document/commands/replacecommand.h \
|
|
|
|
QHexView/document/qhexcursor.h \
|
|
|
|
QHexView/document/qhexdocument.h \
|
|
|
|
QHexView/document/qhexmetadata.h \
|
|
|
|
QHexView/document/qhexrenderer.h \
|
|
|
|
QHexView/qhexview.h \
|
2019-11-10 18:48:02 +00:00
|
|
|
audiogenerator.h \
|
2017-07-03 21:00:42 +01:00
|
|
|
emulator.h \
|
2019-11-09 21:43:35 +00:00
|
|
|
loggingcategory.h \
|
2019-12-01 18:40:28 +00:00
|
|
|
options.h \
|
2019-11-24 17:34:37 +00:00
|
|
|
registry.h \
|
2017-07-09 20:49:26 +01:00
|
|
|
video.h \
|
2017-09-19 20:47:15 +01:00
|
|
|
memorycontainer.h \
|
2017-10-06 20:48:14 +01:00
|
|
|
preferences.h \
|
2017-10-10 14:26:40 +01:00
|
|
|
gamepadpaddle.h \
|
2019-12-01 14:29:13 +00:00
|
|
|
viewbuffer.h
|
2017-07-02 20:55:56 +01:00
|
|
|
|
|
|
|
FORMS += qapple.ui \
|
2017-07-15 15:46:18 +01:00
|
|
|
emulator.ui \
|
2017-09-19 20:47:15 +01:00
|
|
|
memorycontainer.ui \
|
|
|
|
preferences.ui
|
2017-07-02 20:55:56 +01:00
|
|
|
|
|
|
|
RESOURCES += \
|
|
|
|
qapple.qrc
|
|
|
|
|
2019-12-01 15:22:17 +00:00
|
|
|
unix: LIBS += -L$$PWD/../../../build/source -lappleii
|
2017-07-02 20:55:56 +01:00
|
|
|
|
|
|
|
INCLUDEPATH += $$PWD/../../../source
|
|
|
|
DEPENDPATH += $$PWD/../../../source
|
2017-07-10 19:44:52 +01:00
|
|
|
|
|
|
|
unix: LIBS += -levdev
|
2017-09-03 20:43:47 +01:00
|
|
|
|
2017-10-10 14:26:40 +01:00
|
|
|
unix:QMAKE_RPATHDIR += $ORIGIN/../..
|