AppleSAWS/AppleSAWS.pro

45 lines
898 B
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-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-01 16:24:51 +00:00
FORMS += \
2015-12-01 16:41:06 +00:00
src/catalogwidget.ui \
src/mainwindow.ui