Reorganized sources.
git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@30409 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
@@ -3,29 +3,33 @@ SubDir HAIKU_TOP src apps debuganalyzer ;
|
|||||||
UsePrivateHeaders debug interface kernel shared ;
|
UsePrivateHeaders debug interface kernel shared ;
|
||||||
UsePrivateSystemHeaders ;
|
UsePrivateSystemHeaders ;
|
||||||
|
|
||||||
SEARCH_SOURCE += [ FDirName $(SUBDIR) main_window ] ;
|
HAIKU_DEBUG_ANALYZER_HEADERS =
|
||||||
|
$(SUBDIR)
|
||||||
|
[ FDirName $(SUBDIR) gui ]
|
||||||
|
[ FDirName $(SUBDIR) model ]
|
||||||
|
[ FDirName $(SUBDIR) model_loader ]
|
||||||
|
[ FDirName $(SUBDIR) util ]
|
||||||
|
;
|
||||||
|
|
||||||
|
UseHeaders $(HAIKU_DEBUG_ANALYZER_HEADERS) ;
|
||||||
|
|
||||||
|
|
||||||
Application DebugAnalyzer
|
Application DebugAnalyzer
|
||||||
:
|
:
|
||||||
AbstractGeneralPage.cpp
|
|
||||||
DataSource.cpp
|
|
||||||
DebugAnalyzer.cpp
|
DebugAnalyzer.cpp
|
||||||
Model.cpp
|
|
||||||
ModelLoader.cpp
|
|
||||||
SubWindow.cpp
|
|
||||||
SubWindowManager.cpp
|
|
||||||
Table.cpp
|
|
||||||
TableColumns.cpp
|
|
||||||
Variant.cpp
|
|
||||||
|
|
||||||
:
|
:
|
||||||
<nogrist>DebugAnalyzer_MainWindow.o
|
<nogrist>DebugAnalyzer_gui.o
|
||||||
<nogrist>DebugAnalyzer_ThreadWindow.o
|
<nogrist>DebugAnalyzer_model.o
|
||||||
|
<nogrist>DebugAnalyzer_model_loader.o
|
||||||
|
<nogrist>DebugAnalyzer_util.o
|
||||||
|
|
||||||
libcolumnlistview.a libdebug.so be
|
libcolumnlistview.a libdebug.so be
|
||||||
:
|
:
|
||||||
DebugAnalyzer.rdef
|
DebugAnalyzer.rdef
|
||||||
;
|
;
|
||||||
|
|
||||||
HaikuSubInclude main_window ;
|
HaikuSubInclude gui ;
|
||||||
HaikuSubInclude thread_window ;
|
HaikuSubInclude model ;
|
||||||
|
HaikuSubInclude model_loader ;
|
||||||
|
HaikuSubInclude util ;
|
||||||
|
|||||||
@@ -0,0 +1,23 @@
|
|||||||
|
SubDir HAIKU_TOP src apps debuganalyzer gui ;
|
||||||
|
|
||||||
|
UsePrivateHeaders debug interface kernel shared ;
|
||||||
|
UsePrivateSystemHeaders ;
|
||||||
|
|
||||||
|
UseHeaders $(HAIKU_DEBUG_ANALYZER_HEADERS) ;
|
||||||
|
|
||||||
|
|
||||||
|
MergeObject DebugAnalyzer_gui.o
|
||||||
|
:
|
||||||
|
AbstractGeneralPage.cpp
|
||||||
|
SubWindow.cpp
|
||||||
|
SubWindowManager.cpp
|
||||||
|
:
|
||||||
|
DebugAnalyzer_gui_main_window.o
|
||||||
|
DebugAnalyzer_gui_table.o
|
||||||
|
DebugAnalyzer_gui_thread_window.o
|
||||||
|
;
|
||||||
|
|
||||||
|
|
||||||
|
HaikuSubInclude main_window ;
|
||||||
|
HaikuSubInclude table ;
|
||||||
|
HaikuSubInclude thread_window ;
|
||||||
@@ -0,0 +1,13 @@
|
|||||||
|
SubDir HAIKU_TOP src apps debuganalyzer gui main_window ;
|
||||||
|
|
||||||
|
UsePrivateHeaders debug interface kernel shared ;
|
||||||
|
UsePrivateSystemHeaders ;
|
||||||
|
|
||||||
|
UseHeaders $(HAIKU_DEBUG_ANALYZER_HEADERS) ;
|
||||||
|
|
||||||
|
|
||||||
|
MergeObject DebugAnalyzer_gui_main_window.o
|
||||||
|
:
|
||||||
|
MainWindow.cpp
|
||||||
|
ThreadsPage.cpp
|
||||||
|
;
|
||||||
+1
-1
@@ -9,7 +9,7 @@
|
|||||||
|
|
||||||
#include <new>
|
#include <new>
|
||||||
|
|
||||||
#include "TableColumns.h"
|
#include "table/TableColumns.h"
|
||||||
|
|
||||||
|
|
||||||
// #pragma mark - ThreadsTableModel
|
// #pragma mark - ThreadsTableModel
|
||||||
+1
-1
@@ -7,7 +7,7 @@
|
|||||||
|
|
||||||
#include <GroupView.h>
|
#include <GroupView.h>
|
||||||
|
|
||||||
#include "Table.h"
|
#include "table/Table.h"
|
||||||
|
|
||||||
#include "main_window/MainWindow.h"
|
#include "main_window/MainWindow.h"
|
||||||
|
|
||||||
@@ -0,0 +1,13 @@
|
|||||||
|
SubDir HAIKU_TOP src apps debuganalyzer gui table ;
|
||||||
|
|
||||||
|
UsePrivateHeaders debug interface kernel shared ;
|
||||||
|
UsePrivateSystemHeaders ;
|
||||||
|
|
||||||
|
UseHeaders $(HAIKU_DEBUG_ANALYZER_HEADERS) ;
|
||||||
|
|
||||||
|
|
||||||
|
MergeObject DebugAnalyzer_gui_table.o
|
||||||
|
:
|
||||||
|
Table.cpp
|
||||||
|
TableColumns.cpp
|
||||||
|
;
|
||||||
@@ -3,7 +3,7 @@
|
|||||||
* Distributed under the terms of the MIT License.
|
* Distributed under the terms of the MIT License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "Table.h"
|
#include "table/Table.h"
|
||||||
|
|
||||||
#include <new>
|
#include <new>
|
||||||
|
|
||||||
+1
-1
@@ -3,7 +3,7 @@
|
|||||||
* Distributed under the terms of the MIT License.
|
* Distributed under the terms of the MIT License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "TableColumns.h"
|
#include "table/TableColumns.h"
|
||||||
|
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
|
|
||||||
+1
-1
@@ -7,7 +7,7 @@
|
|||||||
|
|
||||||
#include <ColumnTypes.h>
|
#include <ColumnTypes.h>
|
||||||
|
|
||||||
#include "Table.h"
|
#include "table/Table.h"
|
||||||
|
|
||||||
|
|
||||||
class DelagateBasedTableColumn : public TableColumn {
|
class DelagateBasedTableColumn : public TableColumn {
|
||||||
@@ -0,0 +1,13 @@
|
|||||||
|
SubDir HAIKU_TOP src apps debuganalyzer gui thread_window ;
|
||||||
|
|
||||||
|
UsePrivateHeaders debug interface kernel shared ;
|
||||||
|
UsePrivateSystemHeaders ;
|
||||||
|
|
||||||
|
UseHeaders $(HAIKU_DEBUG_ANALYZER_HEADERS) ;
|
||||||
|
|
||||||
|
|
||||||
|
MergeObject DebugAnalyzer_gui_thread_window.o
|
||||||
|
:
|
||||||
|
ThreadWindow.cpp
|
||||||
|
GeneralPage.cpp
|
||||||
|
;
|
||||||
@@ -1,12 +0,0 @@
|
|||||||
SubDir HAIKU_TOP src apps debuganalyzer main_window ;
|
|
||||||
|
|
||||||
UsePrivateHeaders debug interface kernel shared ;
|
|
||||||
UsePrivateSystemHeaders ;
|
|
||||||
|
|
||||||
SubDirHdrs [ FDirName $(SUBDIR) $(DOTDOT) ] ;
|
|
||||||
|
|
||||||
MergeObject DebugAnalyzer_MainWindow.o
|
|
||||||
:
|
|
||||||
MainWindow.cpp
|
|
||||||
ThreadsPage.cpp
|
|
||||||
;
|
|
||||||
@@ -0,0 +1,12 @@
|
|||||||
|
SubDir HAIKU_TOP src apps debuganalyzer model ;
|
||||||
|
|
||||||
|
UsePrivateHeaders debug interface kernel shared ;
|
||||||
|
UsePrivateSystemHeaders ;
|
||||||
|
|
||||||
|
UseHeaders $(HAIKU_DEBUG_ANALYZER_HEADERS) ;
|
||||||
|
|
||||||
|
|
||||||
|
MergeObject DebugAnalyzer_model.o
|
||||||
|
:
|
||||||
|
Model.cpp
|
||||||
|
;
|
||||||
@@ -0,0 +1,12 @@
|
|||||||
|
SubDir HAIKU_TOP src apps debuganalyzer model_loader ;
|
||||||
|
|
||||||
|
UsePrivateHeaders debug interface kernel shared ;
|
||||||
|
UsePrivateSystemHeaders ;
|
||||||
|
|
||||||
|
UseHeaders $(HAIKU_DEBUG_ANALYZER_HEADERS) ;
|
||||||
|
|
||||||
|
|
||||||
|
MergeObject DebugAnalyzer_model_loader.o
|
||||||
|
:
|
||||||
|
ModelLoader.cpp
|
||||||
|
;
|
||||||
@@ -1,12 +0,0 @@
|
|||||||
SubDir HAIKU_TOP src apps debuganalyzer thread_window ;
|
|
||||||
|
|
||||||
UsePrivateHeaders debug interface kernel shared ;
|
|
||||||
UsePrivateSystemHeaders ;
|
|
||||||
|
|
||||||
SubDirHdrs [ FDirName $(SUBDIR) $(DOTDOT) ] ;
|
|
||||||
|
|
||||||
MergeObject DebugAnalyzer_ThreadWindow.o
|
|
||||||
:
|
|
||||||
ThreadWindow.cpp
|
|
||||||
GeneralPage.cpp
|
|
||||||
;
|
|
||||||
@@ -0,0 +1,13 @@
|
|||||||
|
SubDir HAIKU_TOP src apps debuganalyzer util ;
|
||||||
|
|
||||||
|
UsePrivateHeaders debug interface kernel shared ;
|
||||||
|
UsePrivateSystemHeaders ;
|
||||||
|
|
||||||
|
UseHeaders $(HAIKU_DEBUG_ANALYZER_HEADERS) ;
|
||||||
|
|
||||||
|
|
||||||
|
MergeObject DebugAnalyzer_util.o
|
||||||
|
:
|
||||||
|
DataSource.cpp
|
||||||
|
Variant.cpp
|
||||||
|
;
|
||||||
Reference in New Issue
Block a user