comparison gui/src/src.pro @ 14674:252a86f8fe62 gui

Restructured source files. * FileEditor: Moved into editor/. * lexeroctavegui: Moved into editor/. * src.pro: Corrected source file entries according to the changes made. * MainWindow.h: Corrected includes.
author Jacob Dawid <jacob.dawid@googlemail.com>
date Wed, 23 May 2012 10:50:08 +0200
parents 6a6733a55982
children 35512b788af2
comparison
equal deleted inserted replaced
14673:adad007cd018 14674:252a86f8fe62
38 mac { 38 mac {
39 CONFIG -= app_bundle 39 CONFIG -= app_bundle
40 } 40 }
41 41
42 # Includepaths and libraries to link against: 42 # Includepaths and libraries to link against:
43 INCLUDEPATH += . backend ../qterminal/libqterminal \ 43 INCLUDEPATH += . backend editor ../qterminal/libqterminal \
44 $$system(mkoctfile -p INCFLAGS) 44 $$system(mkoctfile -p INCFLAGS)
45 INCFLAGS += $$system(mkoctfile -p INCFLAGS) 45 INCFLAGS += $$system(mkoctfile -p INCFLAGS)
46 mac { 46 mac {
47 INCFLAGS += -I/opt/local/include 47 INCFLAGS += -I/opt/local/include
48 } 48 }
72 QMAKE_LFLAGS += $$LFLAGS $$system(mkoctfile -p RLD_FLAG) 72 QMAKE_LFLAGS += $$LFLAGS $$system(mkoctfile -p RLD_FLAG)
73 QMAKE_CXXFLAGS += $$INCFLAGS 73 QMAKE_CXXFLAGS += $$INCFLAGS
74 74
75 # Files associated with the project: 75 # Files associated with the project:
76 SOURCES +=\ 76 SOURCES +=\
77 lexer/lexeroctavegui.cpp \ 77 editor/lexeroctavegui.cpp \
78 MainWindow.cpp \ 78 MainWindow.cpp \
79 WorkspaceView.cpp \ 79 WorkspaceView.cpp \
80 HistoryDockWidget.cpp \ 80 HistoryDockWidget.cpp \
81 FilesDockWidget.cpp \ 81 FilesDockWidget.cpp \
82 SettingsDialog.cpp \ 82 SettingsDialog.cpp \
83 OctaveGUI.cpp \ 83 OctaveGUI.cpp \
84 ResourceManager.cpp \ 84 ResourceManager.cpp \
85 backend/OctaveLink.cpp \ 85 backend/OctaveLink.cpp \
86 backend/OctaveMainThread.cpp \ 86 backend/OctaveMainThread.cpp \
87 WelcomeWizard.cpp \ 87 WelcomeWizard.cpp \
88 FileEditor.cpp \ 88 editor/FileEditor.cpp \
89 WorkspaceModel.cpp 89 WorkspaceModel.cpp
90 90
91 HEADERS += \ 91 HEADERS += \
92 lexer/lexeroctavegui.h \ 92 editor/lexeroctavegui.h \
93 MainWindow.h \ 93 MainWindow.h \
94 WorkspaceView.h \ 94 WorkspaceView.h \
95 HistoryDockWidget.h \ 95 HistoryDockWidget.h \
96 FilesDockWidget.h \ 96 FilesDockWidget.h \
97 SettingsDialog.h \ 97 SettingsDialog.h \
98 ResourceManager.h \ 98 ResourceManager.h \
99 backend/OctaveLink.h \ 99 backend/OctaveLink.h \
100 backend/OctaveMainThread.h \ 100 backend/OctaveMainThread.h \
101 WelcomeWizard.h \ 101 WelcomeWizard.h \
102 FileEditor.h \ 102 editor/FileEditor.h \
103 WorkspaceModel.h 103 WorkspaceModel.h
104 104
105 FORMS += \ 105 FORMS += \
106 SettingsDialog.ui \ 106 SettingsDialog.ui \
107 WelcomeWizard.ui 107 WelcomeWizard.ui