Changned paths in .pro file

This commit is contained in:
Mark Long 2015-12-01 10:41:06 -06:00
parent 61c849ac28
commit d411cd23ad

View File

@ -6,37 +6,39 @@ greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
TARGET = AppleSAWS TARGET = AppleSAWS
TEMPLATE = app TEMPLATE = app
SOURCES += main.cpp \ INCLUDEPATH += src/
diskfile.cxx \
sector.cxx \ SOURCES += src/main.cpp \
vtoc.cxx \ src/diskfile.cxx \
catalogsector.cxx \ src/sector.cxx \
applestring.cxx \ src/vtoc.cxx \
tracksectorlist.cxx \ src/catalogsector.cxx \
filedescriptiveentry.cxx \ src/applestring.cxx \
applesoftfile.cxx \ src/tracksectorlist.cxx \
genericfile.cxx \ src/filedescriptiveentry.cxx \
disassembler.cxx \ src/applesoftfile.cxx \
binaryfile.cxx \ src/genericfile.cxx \
catalogwidget.cxx \ src/disassembler.cxx \
mainwindow.cxx src/binaryfile.cxx \
src/catalogwidget.cxx \
src/mainwindow.cxx
HEADERS += \ HEADERS += \
diskfile.h \ src/diskfile.h \
sector.h \ src/sector.h \
vtoc.h \ src/vtoc.h \
util.h \ src/util.h \
catalogsector.h \ src/catalogsector.h \
applestring.h \ src/applestring.h \
tracksectorlist.h \ src/tracksectorlist.h \
filedescriptiveentry.h \ src/filedescriptiveentry.h \
applesoftfile.h \ src/applesoftfile.h \
genericfile.h \ src/genericfile.h \
disassembler.h \ src/disassembler.h \
binaryfile.h \ src/binaryfile.h \
catalogwidget.h \ src/catalogwidget.h \
mainwindow.h src/mainwindow.h
FORMS += \ FORMS += \
catalogwidget.ui \ src/catalogwidget.ui \
mainwindow.ui src/mainwindow.ui