2015-12-01 16:24:51 +00:00
|
|
|
|
2016-10-24 18:37:37 +00:00
|
|
|
QT += core gui printsupport
|
2016-02-10 16:10:37 +00:00
|
|
|
CONFIG += c++11
|
2015-12-01 16:24:51 +00:00
|
|
|
|
2017-06-29 05:21:45 +00:00
|
|
|
MOC_DIR = ./.build
|
|
|
|
UI_DIR = ./.build
|
|
|
|
OBJECTS_DIR = ./.build
|
|
|
|
|
2015-12-01 16:24:51 +00:00
|
|
|
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
|
|
|
|
|
|
|
|
TARGET = AppleSAWS
|
|
|
|
TEMPLATE = app
|
|
|
|
|
2015-12-01 16:41:06 +00:00
|
|
|
INCLUDEPATH += src/
|
2016-02-16 22:42:02 +00:00
|
|
|
INCLUDEPATH += src/relocatablefile
|
2015-12-14 09:42:25 +00:00
|
|
|
INCLUDEPATH += src/diskfiles
|
|
|
|
INCLUDEPATH += src/diskfiles/dos33
|
|
|
|
INCLUDEPATH += src/util
|
|
|
|
INCLUDEPATH += src/applesoftfile
|
|
|
|
INCLUDEPATH += src/binaryfile
|
2016-02-26 21:06:48 +00:00
|
|
|
INCLUDEPATH += src/textfile
|
2015-12-14 09:42:25 +00:00
|
|
|
INCLUDEPATH += src/ui/viewers
|
2016-01-21 02:58:48 +00:00
|
|
|
INCLUDEPATH += src/imported
|
2016-02-08 22:56:25 +00:00
|
|
|
INCLUDEPATH += src/internals
|
2016-10-27 22:46:08 +00:00
|
|
|
INCLUDEPATH += src/ui/diskexplorer/
|
2016-10-10 22:16:59 +00:00
|
|
|
INCLUDEPATH += src/ui/widgets/
|
2016-02-16 22:42:02 +00:00
|
|
|
INCLUDEPATH += src/ui
|
2016-01-21 02:58:48 +00:00
|
|
|
|
|
|
|
DEFINES += WS_VIDEO
|
2015-12-01 16:41:06 +00:00
|
|
|
|
2015-12-14 09:42:25 +00:00
|
|
|
SOURCES += \
|
|
|
|
src/main.cpp \
|
|
|
|
src/diskfiles/dos33/diskfile.cxx \
|
|
|
|
src/diskfiles/dos33/sector.cxx \
|
|
|
|
src/diskfiles/dos33/vtoc.cxx \
|
|
|
|
src/diskfiles/dos33/catalogsector.cxx \
|
|
|
|
src/diskfiles/dos33/tracksectorlist.cxx \
|
|
|
|
src/diskfiles/dos33/filedescriptiveentry.cxx \
|
|
|
|
src/diskfiles/dos33/genericfile.cxx \
|
|
|
|
src/util/applestring.cxx \
|
|
|
|
src/applesoftfile/applesoftfile.cxx \
|
|
|
|
src/applesoftfile/applesofttoken.cxx \
|
2016-10-10 22:16:59 +00:00
|
|
|
src/applesoftfile/applesoftformatter.cxx \
|
2015-12-14 09:42:25 +00:00
|
|
|
src/binaryfile/disassembler.cxx \
|
|
|
|
src/binaryfile/binaryfile.cxx \
|
2016-02-26 21:06:48 +00:00
|
|
|
src/textfile/textfile.cxx \
|
2015-12-14 09:42:25 +00:00
|
|
|
src/ui/catalogwidget.cxx \
|
|
|
|
src/ui/viewers/hiresviewwidget.cxx \
|
2016-10-10 22:16:59 +00:00
|
|
|
src/ui/viewers/applesoftfileviewer.cxx \
|
2016-02-11 23:46:10 +00:00
|
|
|
src/ui/viewers/disassemblerviewer.cpp \
|
2016-02-16 22:42:02 +00:00
|
|
|
src/ui/viewers/hexdumpviewer.cpp \
|
2016-02-26 21:06:48 +00:00
|
|
|
src/ui/viewers/texthexdumpviewer.cpp \
|
2016-07-05 13:35:38 +00:00
|
|
|
src/ui/viewers/mazeviewer.cpp \
|
2016-10-10 22:16:59 +00:00
|
|
|
src/ui/viewers/charsetviewer.cpp \
|
|
|
|
src/internals/memory.cxx \
|
|
|
|
src/relocatablefile/relocatablefile.cxx \
|
|
|
|
src/binaryfile/binaryfilemetadata.cpp \
|
|
|
|
src/util/charset.cpp \
|
2016-10-12 22:52:13 +00:00
|
|
|
src/ui/widgets/characterwidget.cpp \
|
2016-10-13 16:18:18 +00:00
|
|
|
src/ui/viewers/applesoftfiledetailviewer.cpp \
|
2016-10-13 21:18:46 +00:00
|
|
|
src/ui/widgets/hexconverter.cpp \
|
2016-10-22 00:14:45 +00:00
|
|
|
src/ui/viewers/viewerbase.cpp \
|
|
|
|
src/ui/widgets/CharacterSetExplorer.cpp \
|
2016-10-26 04:41:42 +00:00
|
|
|
src/ui/widgets/HiresScreenWidget.cpp \
|
|
|
|
src/ui/widgets/DisassemblerMetadataDialog.cpp \
|
|
|
|
src/binaryfile/EntryPointModel.cpp \
|
2016-10-26 07:23:33 +00:00
|
|
|
src/ui/widgets/LocationInfoDialog.cpp \
|
|
|
|
src/binaryfile/EntryPoints.cpp \
|
|
|
|
src/binaryfile/AssemblerSymbols.cpp \
|
2016-10-27 22:46:08 +00:00
|
|
|
src/binaryfile/AssemblerSymbolModel.cpp \
|
|
|
|
src/ui/diskexplorer/DiskExplorer.cpp \
|
2016-10-29 18:05:59 +00:00
|
|
|
src/ui/diskexplorer/DiskExplorerMapWidget.cpp \
|
2016-10-31 16:19:44 +00:00
|
|
|
src/applesoftfile/ApplesoftRetokenizer.cpp \
|
|
|
|
src/internals/JumpLineManager.cpp \
|
|
|
|
src/ui/widgets/FlowLineTextBrowser.cpp
|
2016-10-10 22:16:59 +00:00
|
|
|
|
2015-12-01 16:24:51 +00:00
|
|
|
|
|
|
|
HEADERS += \
|
2015-12-14 09:42:25 +00:00
|
|
|
src/diskfiles/dos33/diskfile.h \
|
|
|
|
src/diskfiles/dos33/sector.h \
|
|
|
|
src/diskfiles/dos33/vtoc.h \
|
|
|
|
src/diskfiles/dos33/catalogsector.h \
|
|
|
|
src/diskfiles/dos33/tracksectorlist.h \
|
|
|
|
src/diskfiles/dos33/filedescriptiveentry.h \
|
|
|
|
src/diskfiles/dos33/genericfile.h \
|
|
|
|
src/util/util.h \
|
|
|
|
src/util/applestring.h \
|
|
|
|
src/applesoftfile/applesoftfile.h \
|
|
|
|
src/applesoftfile/applesofttoken.h \
|
|
|
|
src/binaryfile/disassembler.h \
|
|
|
|
src/binaryfile/binaryfile.h \
|
2016-02-26 21:06:48 +00:00
|
|
|
src/textfile/textfile.h \
|
2015-12-14 09:42:25 +00:00
|
|
|
src/ui/catalogwidget.h \
|
|
|
|
src/ui/viewers/hiresviewwidget.h \
|
2015-12-14 10:48:19 +00:00
|
|
|
src/ui/viewers/applesoftfileviewer.h \
|
2016-01-21 02:58:48 +00:00
|
|
|
src/applesoftfile/applesoftformatter.h \
|
2016-02-08 22:56:25 +00:00
|
|
|
src/applesoftfile/applesoftline.h \
|
|
|
|
src/internals/memory.h \
|
2016-02-11 23:46:10 +00:00
|
|
|
src/ui/viewers/disassemblerviewer.h \
|
2016-02-16 22:42:02 +00:00
|
|
|
src/ui/viewers/hexdumpviewer.h \
|
2016-02-26 21:06:48 +00:00
|
|
|
src/ui/viewers/texthexdumpviewer.h \
|
2016-06-30 00:37:09 +00:00
|
|
|
src/relocatablefile/relocatablefile.h \
|
2016-07-05 13:35:38 +00:00
|
|
|
src/ui/viewers/mazeviewer.h \
|
2016-10-10 22:16:59 +00:00
|
|
|
src/binaryfile/binaryfilemetadata.h \
|
|
|
|
src/ui/widgets/characterwidget.h \
|
|
|
|
src/util/charset.h \
|
2016-10-12 22:52:13 +00:00
|
|
|
src/ui/viewers/charsetviewer.h \
|
2016-10-13 16:18:18 +00:00
|
|
|
src/ui/viewers/applesoftfiledetailviewer.h \
|
2016-10-13 21:18:46 +00:00
|
|
|
src/ui/widgets/hexconverter.h \
|
2016-10-14 22:27:28 +00:00
|
|
|
src/ui/widgets/hrcgcontrolsinfo.h \
|
|
|
|
src/ui/viewers/viewerbase.h \
|
2016-10-22 00:14:45 +00:00
|
|
|
src/ui/viewers/fileviewerinterface.h \
|
|
|
|
src/ui/widgets/CharacterSetExplorer.h \
|
2016-10-26 04:41:42 +00:00
|
|
|
src/ui/widgets/HiresScreenWidget.h \
|
|
|
|
src/ui/widgets/DisassemblerMetadataDialog.h \
|
|
|
|
src/binaryfile/EntryPointModel.h \
|
2016-10-26 07:23:33 +00:00
|
|
|
src/ui/widgets/LocationInfoDialog.h \
|
|
|
|
src/binaryfile/EntryPoints.h \
|
|
|
|
src/binaryfile/AssemblerSymbols.h \
|
2016-10-26 16:32:48 +00:00
|
|
|
src/binaryfile/AssemblerSymbolModel.h \
|
2016-10-27 22:46:08 +00:00
|
|
|
src/binaryfile/MemoryUsageMap.h \
|
|
|
|
src/ui/diskexplorer/DiskExplorer.h \
|
2016-10-29 18:05:59 +00:00
|
|
|
src/ui/diskexplorer/DiskExplorerMapWidget.h \
|
2016-10-30 23:31:11 +00:00
|
|
|
src/applesoftfile/ApplesoftRetokenizer.h \
|
2016-10-31 16:19:44 +00:00
|
|
|
src/util/AppleColors.h \
|
|
|
|
src/internals/JumpLineManager.h \
|
2017-06-29 05:21:45 +00:00
|
|
|
src/ui/widgets/FlowLineTextBrowser.h \
|
|
|
|
src/ui/widgets/asciiinfodialog.h
|
2015-12-01 16:24:51 +00:00
|
|
|
|
|
|
|
FORMS += \
|
2015-12-14 09:42:25 +00:00
|
|
|
src/ui/catalogwidget.ui \
|
2016-02-08 22:56:25 +00:00
|
|
|
src/ui/viewers/applesoftfileviewer.ui \
|
2016-02-11 23:46:10 +00:00
|
|
|
src/ui/viewers/disassemblerviewer.ui \
|
2016-02-26 21:06:48 +00:00
|
|
|
src/ui/viewers/hexdumpviewer.ui \
|
2016-10-12 22:52:13 +00:00
|
|
|
src/ui/viewers/texthexdumpviewer.ui \
|
2016-10-13 16:18:18 +00:00
|
|
|
src/ui/viewers/applesoftfiledetailviewer.ui \
|
2016-10-13 21:18:46 +00:00
|
|
|
src/ui/widgets/hexconverter.ui \
|
2016-10-14 22:27:28 +00:00
|
|
|
src/ui/widgets/hrcgcontrolsinfo.ui \
|
2016-10-22 00:14:45 +00:00
|
|
|
src/ui/viewers/viewerbase.ui \
|
2016-10-26 04:41:42 +00:00
|
|
|
src/ui/widgets/CharacterSetExplorer.ui \
|
|
|
|
src/ui/widgets/DisassemblerMetadataDialog.ui \
|
2017-06-29 05:21:45 +00:00
|
|
|
src/ui/widgets/LocationInfoDialog.ui \
|
|
|
|
src/ui/widgets/asciiinfodialog.ui
|