Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
with
1,258 additions
and 3 deletions.
- +2 −1 python/plugins/db_manager/db_model.py
- +1 −0 python/plugins/db_manager/db_plugins/CMakeLists.txt
- +2 −1 python/plugins/db_manager/db_plugins/__init__.py
- +9 −0 python/plugins/db_manager/db_plugins/gpkg/CMakeLists.txt
- 0 python/plugins/db_manager/db_plugins/gpkg/__init__.py
- +796 −0 python/plugins/db_manager/db_plugins/gpkg/connector.py
- +51 −0 python/plugins/db_manager/db_plugins/gpkg/data_model.py
- BIN python/plugins/db_manager/db_plugins/gpkg/icons/gpkg_icon.png
- +47 −0 python/plugins/db_manager/db_plugins/gpkg/info_model.py
- +314 −0 python/plugins/db_manager/db_plugins/gpkg/plugin.py
- +5 −0 python/plugins/db_manager/db_plugins/gpkg/resources.qrc
- +28 −0 python/plugins/db_manager/db_plugins/gpkg/sql_dictionary.py
- +1 −1 python/plugins/db_manager/db_tree.py
- +2 −0 python/plugins/db_manager/dlg_sql_layer_window.py
@@ -0,0 +1,9 @@ | ||
|
||
FILE(GLOB PY_FILES *.py) | ||
FILE(GLOB ICON_FILES icons/*.png) | ||
|
||
PYQT_ADD_RESOURCES(PYRC_FILES resources.qrc) | ||
|
||
PLUGIN_INSTALL(db_manager db_plugins/gpkg ${PY_FILES} ${PYRC_FILES}) | ||
PLUGIN_INSTALL(db_manager db_plugins/gpkg/icons ${ICON_FILES}) | ||
|
Empty file.
Oops, something went wrong.