Moved several files from pglab project to pglablib
This commit is contained in:
parent
206d734ff5
commit
f4538069cb
44 changed files with 45 additions and 44 deletions
|
|
@ -32,23 +32,16 @@ win32:RC_ICONS += pglab.ico
|
|||
SOURCES += main.cpp\
|
||||
QueryResultModel.cpp \
|
||||
QueryExplainModel.cpp \
|
||||
ASyncDBConnection.cpp \
|
||||
tsqueue.cpp \
|
||||
CreateDatabaseDialog.cpp \
|
||||
DatabaseWindow.cpp \
|
||||
ConnectionManagerWindow.cpp \
|
||||
ConnectionListModel.cpp \
|
||||
ConnectionConfig.cpp \
|
||||
BackupRestore.cpp \
|
||||
QueryTab.cpp \
|
||||
stopwatch.cpp \
|
||||
util.cpp \
|
||||
DatabaseInspectorWidget.cpp \
|
||||
PgType.cpp \
|
||||
PgTypeContainer.cpp \
|
||||
TuplesResultWidget.cpp \
|
||||
PgNamespace.cpp \
|
||||
PgClass.cpp \
|
||||
BackupDialog.cpp \
|
||||
TypeSelectionItemModel.cpp \
|
||||
MasterController.cpp \
|
||||
|
|
@ -59,11 +52,7 @@ SOURCES += main.cpp\
|
|||
ServerWindow.cpp \
|
||||
ASyncWindow.cpp \
|
||||
DatabasesTableModel.cpp \
|
||||
PgDatabase.cpp \
|
||||
PgDatabaseContainer.cpp \
|
||||
RolesTableModel.cpp \
|
||||
PgAuthId.cpp \
|
||||
PgAuthIdContainer.cpp \
|
||||
ConnectionList.cpp \
|
||||
ProcessStdioWidget.cpp \
|
||||
GlobalIoService.cpp \
|
||||
|
|
@ -72,40 +61,23 @@ SOURCES += main.cpp\
|
|||
BaseTableModel.cpp \
|
||||
QueryParamListController.cpp \
|
||||
TablesPage.cpp \
|
||||
PgClassContainer.cpp \
|
||||
TablesTableModel.cpp \
|
||||
PgDatabaseCatalog.cpp \
|
||||
PgNamespaceContainer.cpp \
|
||||
ColumnTableModel.cpp \
|
||||
PgAttribute.cpp \
|
||||
PgContainer.cpp \
|
||||
PgAttributeContainer.cpp \
|
||||
PgIndex.cpp \
|
||||
PgIndexContainer.cpp \
|
||||
PgConstraint.cpp \
|
||||
PgConstraintContainer.cpp \
|
||||
NamespaceFilterWidget.cpp \
|
||||
NamespaceItemModel.cpp
|
||||
|
||||
HEADERS += \
|
||||
QueryResultModel.h \
|
||||
QueryExplainModel.h \
|
||||
ASyncDBConnection.h \
|
||||
tsqueue.h \
|
||||
CreateDatabaseDialog.h \
|
||||
DatabaseWindow.h \
|
||||
ConnectionManagerWindow.h \
|
||||
ConnectionListModel.h \
|
||||
ConnectionConfig.h \
|
||||
QueryTab.h \
|
||||
stopwatch.h \
|
||||
util.h \
|
||||
DatabaseInspectorWidget.h \
|
||||
PgType.h \
|
||||
PgTypeContainer.h \
|
||||
TuplesResultWidget.h \
|
||||
PgNamespace.h \
|
||||
PgClass.h \
|
||||
BackupDialog.h \
|
||||
TypeSelectionItemModel.h \
|
||||
MasterController.h \
|
||||
|
|
@ -116,12 +88,7 @@ HEADERS += \
|
|||
ServerWindow.h \
|
||||
ASyncWindow.h \
|
||||
DatabasesTableModel.h \
|
||||
PgDatabase.h \
|
||||
PgDatabaseContainer.h \
|
||||
PgContainer.h \
|
||||
RolesTableModel.h \
|
||||
PgAuthId.h \
|
||||
PgAuthIdContainer.h \
|
||||
ConnectionList.h \
|
||||
ProcessStdioWidget.h \
|
||||
GlobalIoService.h \
|
||||
|
|
@ -130,17 +97,8 @@ HEADERS += \
|
|||
BaseTableModel.h \
|
||||
QueryParamListController.h \
|
||||
TablesPage.h \
|
||||
PgClassContainer.h \
|
||||
TablesTableModel.h \
|
||||
PgDatabaseCatalog.h \
|
||||
PgNamespaceContainer.h \
|
||||
ColumnTableModel.h \
|
||||
PgAttribute.h \
|
||||
PgAttributeContainer.h \
|
||||
PgIndex.h \
|
||||
PgIndexContainer.h \
|
||||
PgConstraint.h \
|
||||
PgConstraintContainer.h \
|
||||
NamespaceFilterWidget.h \
|
||||
NamespaceItemModel.h
|
||||
|
||||
|
|
|
|||
|
|
@ -27,13 +27,56 @@ INCLUDEPATH += C:\prog\include C:\Prog\include\pgsql C:\VSproj\boost32\include\b
|
|||
|
||||
SOURCES += \
|
||||
Pglablib.cpp \
|
||||
ASyncDBConnection.cpp \
|
||||
ConnectionConfig.cpp \
|
||||
PgType.cpp \
|
||||
PgTypeContainer.cpp \
|
||||
PgNamespace.cpp \
|
||||
PgClass.cpp \
|
||||
PgDatabase.cpp \
|
||||
PgDatabaseContainer.cpp \
|
||||
PgAuthId.cpp \
|
||||
PgAuthIdContainer.cpp \
|
||||
PgClassContainer.cpp \
|
||||
PgDatabaseCatalog.cpp \
|
||||
PgNamespaceContainer.cpp \
|
||||
PgAttribute.cpp \
|
||||
PgContainer.cpp \
|
||||
PgAttributeContainer.cpp \
|
||||
PgIndex.cpp \
|
||||
PgIndexContainer.cpp \
|
||||
PgConstraint.cpp \
|
||||
PgConstraintContainer.cpp \
|
||||
ParamListJson.cpp \
|
||||
ParamListModel.cpp
|
||||
ParamListModel.cpp \
|
||||
util.cpp
|
||||
|
||||
HEADERS += \
|
||||
Pglablib.h \
|
||||
ASyncDBConnection.h \
|
||||
ConnectionConfig.h \
|
||||
PgType.h \
|
||||
PgTypeContainer.h \
|
||||
PgNamespace.h \
|
||||
PgClass.h \
|
||||
PgDatabase.h \
|
||||
PgDatabaseContainer.h \
|
||||
PgContainer.h \
|
||||
PgAuthId.h \
|
||||
PgAuthIdContainer.h \
|
||||
PgClassContainer.h \
|
||||
PgDatabaseCatalog.h \
|
||||
PgNamespaceContainer.h \
|
||||
PgAttribute.h \
|
||||
PgAttributeContainer.h \
|
||||
PgIndex.h \
|
||||
PgIndexContainer.h \
|
||||
PgConstraint.h \
|
||||
PgConstraintContainer.h \
|
||||
ParamListJson.h \
|
||||
ParamListModel.h
|
||||
ParamListModel.h \
|
||||
util.h
|
||||
|
||||
unix {
|
||||
target.path = /usr/lib
|
||||
INSTALLS += target
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue