AppleSAWS/AppleSAWS.pro

52 lines
1.1 KiB
Prolog
Raw Normal View History

2015-12-01 16:24:51 +00:00
QT += core gui
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
TARGET = AppleSAWS
TEMPLATE = app
2015-12-01 16:41:06 +00:00
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 \
2015-12-05 03:45:27 +00:00
src/hiresviewwidget.cxx \
2015-12-14 09:20:36 +00:00
src/applesoftfileviewer.cxx \
src/applesofttoken.cxx
2015-12-01 16:24:51 +00:00
HEADERS += \
2015-12-01 16:41:06 +00:00
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 \
2015-12-05 03:45:27 +00:00
src/hiresviewwidget.h \
2015-12-14 09:20:36 +00:00
src/applesoftfileviewer.h \
src/applesofttoken.h
2015-12-01 16:24:51 +00:00
FORMS += \
2015-12-01 16:41:06 +00:00
src/catalogwidget.ui \
2015-12-05 03:45:27 +00:00
src/mainwindow.ui \
src/applesoftfileviewer.ui