-
-
Notifications
You must be signed in to change notification settings - Fork 3.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[FEATURE]: offline editing plugin from Mathias Walker
git-svn-id: http://svn.osgeo.org/qgis/trunk@14335 c8812cc2-4d05-0410-92ff-de0c093fc19c
- Loading branch information
mhugent
committed
Oct 5, 2010
1 parent
0554824
commit 18b4391
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
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.