mirror of
https://github.com/markdavidlong/AppleSAWS.git
synced 2024-11-22 15:33:04 +00:00
52 lines
1.1 KiB
Prolog
52 lines
1.1 KiB
Prolog
|
|
QT += core gui
|
|
|
|
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
|
|
|
|
TARGET = AppleSAWS
|
|
TEMPLATE = app
|
|
|
|
INCLUDEPATH += src/
|
|
|
|
SOURCES += src/main.cpp \
|
|
src/diskfile.cxx \
|
|
src/sector.cxx \
|
|
src/vtoc.cxx \
|
|
src/catalogsector.cxx \
|
|
src/applestring.cxx \
|
|
src/tracksectorlist.cxx \
|
|
src/filedescriptiveentry.cxx \
|
|
src/applesoftfile.cxx \
|
|
src/genericfile.cxx \
|
|
src/disassembler.cxx \
|
|
src/binaryfile.cxx \
|
|
src/catalogwidget.cxx \
|
|
src/mainwindow.cxx \
|
|
src/hiresviewwidget.cxx \
|
|
src/applesoftfileviewer.cxx \
|
|
src/applesofttoken.cxx
|
|
|
|
HEADERS += \
|
|
src/diskfile.h \
|
|
src/sector.h \
|
|
src/vtoc.h \
|
|
src/util.h \
|
|
src/catalogsector.h \
|
|
src/applestring.h \
|
|
src/tracksectorlist.h \
|
|
src/filedescriptiveentry.h \
|
|
src/applesoftfile.h \
|
|
src/genericfile.h \
|
|
src/disassembler.h \
|
|
src/binaryfile.h \
|
|
src/catalogwidget.h \
|
|
src/mainwindow.h \
|
|
src/hiresviewwidget.h \
|
|
src/applesoftfileviewer.h \
|
|
src/applesofttoken.h
|
|
|
|
FORMS += \
|
|
src/catalogwidget.ui \
|
|
src/mainwindow.ui \
|
|
src/applesoftfileviewer.ui
|