Updated .pro for new paths

This commit is contained in:
Mark Long 2015-12-14 03:42:25 -06:00
parent 5df09ea481
commit 2f7845229d

View File

@ -7,45 +7,53 @@ TARGET = AppleSAWS
TEMPLATE = app TEMPLATE = app
INCLUDEPATH += src/ INCLUDEPATH += src/
INCLUDEPATH += src/diskfiles
INCLUDEPATH += src/diskfiles/dos33
INCLUDEPATH += src/util
INCLUDEPATH += src/applesoftfile
INCLUDEPATH += src/binaryfile
INCLUDEPATH += src/ui
INCLUDEPATH += src/ui/viewers
SOURCES += src/main.cpp \ SOURCES += \
src/diskfile.cxx \ src/main.cpp \
src/sector.cxx \ src/diskfiles/dos33/diskfile.cxx \
src/vtoc.cxx \ src/diskfiles/dos33/sector.cxx \
src/catalogsector.cxx \ src/diskfiles/dos33/vtoc.cxx \
src/applestring.cxx \ src/diskfiles/dos33/catalogsector.cxx \
src/tracksectorlist.cxx \ src/diskfiles/dos33/tracksectorlist.cxx \
src/filedescriptiveentry.cxx \ src/diskfiles/dos33/filedescriptiveentry.cxx \
src/applesoftfile.cxx \ src/diskfiles/dos33/genericfile.cxx \
src/genericfile.cxx \ src/util/applestring.cxx \
src/disassembler.cxx \ src/applesoftfile/applesoftfile.cxx \
src/binaryfile.cxx \ src/applesoftfile/applesofttoken.cxx \
src/catalogwidget.cxx \ src/binaryfile/disassembler.cxx \
src/mainwindow.cxx \ src/binaryfile/binaryfile.cxx \
src/hiresviewwidget.cxx \ src/ui/catalogwidget.cxx \
src/applesoftfileviewer.cxx \ src/ui/mainwindow.cxx \
src/applesofttoken.cxx src/ui/viewers/hiresviewwidget.cxx \
src/ui/viewers/applesoftfileviewer.cxx
HEADERS += \ HEADERS += \
src/diskfile.h \ src/diskfiles/dos33/diskfile.h \
src/sector.h \ src/diskfiles/dos33/sector.h \
src/vtoc.h \ src/diskfiles/dos33/vtoc.h \
src/util.h \ src/diskfiles/dos33/catalogsector.h \
src/catalogsector.h \ src/diskfiles/dos33/tracksectorlist.h \
src/applestring.h \ src/diskfiles/dos33/filedescriptiveentry.h \
src/tracksectorlist.h \ src/diskfiles/dos33/genericfile.h \
src/filedescriptiveentry.h \ src/util/util.h \
src/applesoftfile.h \ src/util/applestring.h \
src/genericfile.h \ src/applesoftfile/applesoftfile.h \
src/disassembler.h \ src/applesoftfile/applesofttoken.h \
src/binaryfile.h \ src/binaryfile/disassembler.h \
src/catalogwidget.h \ src/binaryfile/binaryfile.h \
src/mainwindow.h \ src/ui/catalogwidget.h \
src/hiresviewwidget.h \ src/ui/mainwindow.h \
src/applesoftfileviewer.h \ src/ui/viewers/hiresviewwidget.h \
src/applesofttoken.h src/ui/viewers/applesoftfileviewer.h
FORMS += \ FORMS += \
src/catalogwidget.ui \ src/ui/catalogwidget.ui \
src/mainwindow.ui \ src/ui/mainwindow.ui \
src/applesoftfileviewer.ui src/ui/viewers/applesoftfileviewer.ui