2015-12-01 10:24:51 -06:00
|
|
|
|
2016-10-24 13:37:37 -05:00
|
|
|
QT += core gui printsupport
|
2016-02-10 10:10:37 -06:00
|
|
|
CONFIG += c++11
|
2015-12-01 10:24:51 -06:00
|
|
|
|
|
|
|
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
|
|
|
|
|
|
|
|
TARGET = AppleSAWS
|
|
|
|
TEMPLATE = app
|
|
|
|
|
2015-12-01 10:41:06 -06:00
|
|
|
INCLUDEPATH += src/
|
2016-02-16 16:42:02 -06:00
|
|
|
INCLUDEPATH += src/relocatablefile
|
2015-12-14 03:42:25 -06:00
|
|
|
INCLUDEPATH += src/diskfiles
|
|
|
|
INCLUDEPATH += src/diskfiles/dos33
|
|
|
|
INCLUDEPATH += src/util
|
|
|
|
INCLUDEPATH += src/applesoftfile
|
|
|
|
INCLUDEPATH += src/binaryfile
|
2016-02-26 15:06:48 -06:00
|
|
|
INCLUDEPATH += src/textfile
|
2015-12-14 03:42:25 -06:00
|
|
|
INCLUDEPATH += src/ui/viewers
|
2016-01-20 20:58:48 -06:00
|
|
|
INCLUDEPATH += src/imported
|
2016-02-08 16:56:25 -06:00
|
|
|
INCLUDEPATH += src/internals
|
2016-10-27 17:46:08 -05:00
|
|
|
INCLUDEPATH += src/ui/diskexplorer/
|
2016-10-10 17:16:59 -05:00
|
|
|
INCLUDEPATH += src/ui/widgets/
|
2016-02-16 16:42:02 -06:00
|
|
|
INCLUDEPATH += src/ui
|
2016-01-20 20:58:48 -06:00
|
|
|
|
|
|
|
DEFINES += WS_VIDEO
|
2015-12-01 10:41:06 -06:00
|
|
|
|
2015-12-14 03:42:25 -06: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 17:16:59 -05:00
|
|
|
src/applesoftfile/applesoftformatter.cxx \
|
2015-12-14 03:42:25 -06:00
|
|
|
src/binaryfile/disassembler.cxx \
|
|
|
|
src/binaryfile/binaryfile.cxx \
|
2016-02-26 15:06:48 -06:00
|
|
|
src/textfile/textfile.cxx \
|
2015-12-14 03:42:25 -06:00
|
|
|
src/ui/catalogwidget.cxx \
|
|
|
|
src/ui/viewers/hiresviewwidget.cxx \
|
2016-10-10 17:16:59 -05:00
|
|
|
src/ui/viewers/applesoftfileviewer.cxx \
|
2016-02-11 17:46:10 -06:00
|
|
|
src/ui/viewers/disassemblerviewer.cpp \
|
2016-02-16 16:42:02 -06:00
|
|
|
src/ui/viewers/hexdumpviewer.cpp \
|
2016-02-26 15:06:48 -06:00
|
|
|
src/ui/viewers/texthexdumpviewer.cpp \
|
2016-07-05 08:35:38 -05:00
|
|
|
src/ui/viewers/mazeviewer.cpp \
|
2016-10-10 17:16:59 -05: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 17:52:13 -05:00
|
|
|
src/ui/widgets/characterwidget.cpp \
|
2016-10-13 11:18:18 -05:00
|
|
|
src/ui/viewers/applesoftfiledetailviewer.cpp \
|
2016-10-13 16:18:46 -05:00
|
|
|
src/ui/widgets/hexconverter.cpp \
|
2016-10-21 19:14:45 -05:00
|
|
|
src/ui/viewers/viewerbase.cpp \
|
|
|
|
src/ui/widgets/CharacterSetExplorer.cpp \
|
2016-10-25 23:41:42 -05:00
|
|
|
src/ui/widgets/HiresScreenWidget.cpp \
|
|
|
|
src/ui/widgets/DisassemblerMetadataDialog.cpp \
|
|
|
|
src/binaryfile/EntryPointModel.cpp \
|
2016-10-26 02:23:33 -05:00
|
|
|
src/ui/widgets/LocationInfoDialog.cpp \
|
|
|
|
src/binaryfile/EntryPoints.cpp \
|
|
|
|
src/binaryfile/AssemblerSymbols.cpp \
|
2016-10-27 17:46:08 -05:00
|
|
|
src/binaryfile/AssemblerSymbolModel.cpp \
|
|
|
|
src/ui/diskexplorer/DiskExplorer.cpp \
|
2016-10-29 13:05:59 -05:00
|
|
|
src/ui/diskexplorer/DiskExplorerMapWidget.cpp \
|
|
|
|
src/applesoftfile/ApplesoftRetokenizer.cpp
|
2016-10-10 17:16:59 -05:00
|
|
|
|
2015-12-01 10:24:51 -06:00
|
|
|
|
|
|
|
HEADERS += \
|
2015-12-14 03:42:25 -06: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 15:06:48 -06:00
|
|
|
src/textfile/textfile.h \
|
2015-12-14 03:42:25 -06:00
|
|
|
src/ui/catalogwidget.h \
|
|
|
|
src/ui/viewers/hiresviewwidget.h \
|
2015-12-14 04:48:19 -06:00
|
|
|
src/ui/viewers/applesoftfileviewer.h \
|
2016-01-20 20:58:48 -06:00
|
|
|
src/applesoftfile/applesoftformatter.h \
|
2016-02-08 16:56:25 -06:00
|
|
|
src/applesoftfile/applesoftline.h \
|
|
|
|
src/internals/memory.h \
|
2016-02-11 17:46:10 -06:00
|
|
|
src/ui/viewers/disassemblerviewer.h \
|
2016-02-16 16:42:02 -06:00
|
|
|
src/ui/viewers/hexdumpviewer.h \
|
2016-02-26 15:06:48 -06:00
|
|
|
src/ui/viewers/texthexdumpviewer.h \
|
2016-06-29 19:37:09 -05:00
|
|
|
src/relocatablefile/relocatablefile.h \
|
2016-07-05 08:35:38 -05:00
|
|
|
src/ui/viewers/mazeviewer.h \
|
2016-10-10 17:16:59 -05:00
|
|
|
src/binaryfile/binaryfilemetadata.h \
|
|
|
|
src/ui/widgets/characterwidget.h \
|
|
|
|
src/util/charset.h \
|
2016-10-12 17:52:13 -05:00
|
|
|
src/ui/viewers/charsetviewer.h \
|
2016-10-13 11:18:18 -05:00
|
|
|
src/ui/viewers/applesoftfiledetailviewer.h \
|
2016-10-13 16:18:46 -05:00
|
|
|
src/ui/widgets/hexconverter.h \
|
2016-10-14 17:27:28 -05:00
|
|
|
src/ui/widgets/hrcgcontrolsinfo.h \
|
|
|
|
src/ui/viewers/viewerbase.h \
|
2016-10-21 19:14:45 -05:00
|
|
|
src/ui/viewers/fileviewerinterface.h \
|
|
|
|
src/ui/widgets/CharacterSetExplorer.h \
|
2016-10-25 23:41:42 -05:00
|
|
|
src/ui/widgets/HiresScreenWidget.h \
|
|
|
|
src/ui/widgets/DisassemblerMetadataDialog.h \
|
|
|
|
src/binaryfile/EntryPointModel.h \
|
2016-10-26 02:23:33 -05:00
|
|
|
src/ui/widgets/LocationInfoDialog.h \
|
|
|
|
src/binaryfile/EntryPoints.h \
|
|
|
|
src/binaryfile/AssemblerSymbols.h \
|
2016-10-26 11:32:48 -05:00
|
|
|
src/binaryfile/AssemblerSymbolModel.h \
|
2016-10-27 17:46:08 -05:00
|
|
|
src/binaryfile/MemoryUsageMap.h \
|
|
|
|
src/ui/diskexplorer/DiskExplorer.h \
|
2016-10-29 13:05:59 -05:00
|
|
|
src/ui/diskexplorer/DiskExplorerMapWidget.h \
|
2016-10-30 18:31:11 -05:00
|
|
|
src/applesoftfile/ApplesoftRetokenizer.h \
|
|
|
|
src/util/AppleColors.h
|
2015-12-01 10:24:51 -06:00
|
|
|
|
|
|
|
FORMS += \
|
2015-12-14 03:42:25 -06:00
|
|
|
src/ui/catalogwidget.ui \
|
2016-02-08 16:56:25 -06:00
|
|
|
src/ui/viewers/applesoftfileviewer.ui \
|
2016-02-11 17:46:10 -06:00
|
|
|
src/ui/viewers/disassemblerviewer.ui \
|
2016-02-26 15:06:48 -06:00
|
|
|
src/ui/viewers/hexdumpviewer.ui \
|
2016-10-12 17:52:13 -05:00
|
|
|
src/ui/viewers/texthexdumpviewer.ui \
|
2016-10-13 11:18:18 -05:00
|
|
|
src/ui/viewers/applesoftfiledetailviewer.ui \
|
2016-10-13 16:18:46 -05:00
|
|
|
src/ui/widgets/hexconverter.ui \
|
2016-10-14 17:27:28 -05:00
|
|
|
src/ui/widgets/hrcgcontrolsinfo.ui \
|
2016-10-21 19:14:45 -05:00
|
|
|
src/ui/viewers/viewerbase.ui \
|
2016-10-25 23:41:42 -05:00
|
|
|
src/ui/widgets/CharacterSetExplorer.ui \
|
|
|
|
src/ui/widgets/DisassemblerMetadataDialog.ui \
|
|
|
|
src/ui/widgets/LocationInfoDialog.ui
|