Permalink
Show file tree
Hide file tree
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
[FEATURE]: offline editing plugin from Mathias Walker
git-svn-id: http://svn.osgeo.org/qgis/trunk/qgis@14335 c8812cc2-4d05-0410-92ff-de0c093fc19c
- Loading branch information
mhugent
committed
Oct 5, 2010
1 parent
9b3db76
commit a785159
Showing
17 changed files
with
1,974 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -13,6 +13,7 @@ SUBDIRS (copyright_label | ||
evis | ||
point_displacement_renderer | ||
spatialquery | ||
offline_editing | ||
) | ||
|
||
IF (POSTGRES_FOUND) | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
|
||
######################################################## | ||
# Files | ||
|
||
SET (offline_editing_plugin_SRCS | ||
offline_editing_plugin.cpp | ||
offline_editing_plugin_gui.cpp | ||
offline_editing.cpp | ||
offline_editing_progress_dialog.cpp | ||
) | ||
|
||
SET (offline_editing_plugin_UIS | ||
offline_editing_plugin_guibase.ui | ||
offline_editing_progress_dialog_base.ui | ||
) | ||
|
||
SET (offline_editing_plugin_MOC_HDRS | ||
offline_editing_plugin.h | ||
offline_editing_plugin_gui.h | ||
offline_editing.h | ||
offline_editing_progress_dialog.h | ||
) | ||
|
||
SET (offline_editing_plugin_RCCS offline_editing_plugin.qrc) | ||
|
||
######################################################## | ||
# Build | ||
|
||
QT4_WRAP_UI (offline_editing_plugin_UIS_H ${offline_editing_plugin_UIS}) | ||
|
||
QT4_WRAP_CPP (offline_editing_plugin_MOC_SRCS ${offline_editing_plugin_MOC_HDRS}) | ||
|
||
QT4_ADD_RESOURCES(offline_editing_plugin_RCC_SRCS ${offline_editing_plugin_RCCS}) | ||
|
||
ADD_LIBRARY (offlineeditingplugin MODULE ${offline_editing_plugin_SRCS} ${offline_editing_plugin_MOC_SRCS} ${offline_editing_plugin_RCC_SRCS} ${offline_editing_plugin_UIS_H}) | ||
|
||
INCLUDE_DIRECTORIES( | ||
${CMAKE_CURRENT_BINARY_DIR} | ||
${SQLITE3_INCLUDE_DIR} ${SPATIALITE_INCLUDE_DIR} | ||
../../core ../../core/raster ../../core/renderer ../../core/symbology | ||
../../gui | ||
.. | ||
) | ||
|
||
TARGET_LINK_LIBRARIES(offlineeditingplugin | ||
qgis_core | ||
qgis_gui | ||
) | ||
|
||
|
||
######################################################## | ||
# Install | ||
|
||
INSTALL(TARGETS offlineeditingplugin | ||
RUNTIME DESTINATION ${QGIS_PLUGIN_DIR} | ||
LIBRARY DESTINATION ${QGIS_PLUGIN_DIR}) |
Oops, something went wrong.