-
-
Notifications
You must be signed in to change notification settings - Fork 3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Interpolation plugin for triangle based or inverse distance interpola…
…tion git-svn-id: http://svn.osgeo.org/qgis/trunk@9128 c8812cc2-4d05-0410-92ff-de0c093fc19c
- Loading branch information
mhugent
committed
Aug 23, 2008
1 parent
b2c7c2a
commit 6187544
Showing
46 changed files
with
7,631 additions
and
1 deletion.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
######################################################## | ||
# Files | ||
|
||
SET (INTERPOLATION_SRCS | ||
qgsinterpolationplugin.cpp | ||
qgsgridfilewriter.cpp | ||
qgsidwinterpolator.cpp | ||
qgsidwinterpolatordialog.cpp | ||
qgsinterpolationdialog.cpp | ||
qgsinterpolator.cpp | ||
qgsinterpolatordialog.cpp | ||
qgstininterpolator.cpp | ||
qgstininterpolatordialog.cpp | ||
DualEdgeTriangulation.cc | ||
HalfEdge.cc | ||
Line3D.cc | ||
LinTriangleInterpolator.cc | ||
MathUtils.cc | ||
Node.cc | ||
Point3D.cc | ||
TriangleInterpolator.cc | ||
Triangulation.cc | ||
Vector3D.cc | ||
) | ||
|
||
SET (INTERPOLATION_UIS | ||
qgsidwinterpolatordialogbase.ui | ||
qgsinterpolationdialogbase.ui | ||
qgstininterpolatordialogbase.ui | ||
) | ||
|
||
SET (INTERPOLATION_MOC_HDRS | ||
qgsinterpolationplugin.h | ||
qgstininterpolatordialog.h | ||
qgsidwinterpolatordialog.h | ||
qgsinterpolationdialog.h | ||
) | ||
|
||
######################################################## | ||
# Build | ||
|
||
QT4_WRAP_UI (INTERPOLATION_UIS_H ${INTERPOLATION_UIS}) | ||
|
||
QT4_WRAP_CPP (INTERPOLATION_MOC_SRCS ${INTERPOLATION_MOC_HDRS}) | ||
|
||
ADD_LIBRARY (interpolationplugin MODULE ${INTERPOLATION_SRCS} ${INTERPOLATION_MOC_SRCS} ${INTERPOLATION_RCC_SRCS} ${INTERPOLATION_UIS_H}) | ||
|
||
INCLUDE_DIRECTORIES( | ||
${CMAKE_CURRENT_BINARY_DIR} | ||
../../core ../../core/raster ../../core/renderer ../../core/symbology | ||
../../gui | ||
.. | ||
. | ||
) | ||
|
||
TARGET_LINK_LIBRARIES(interpolationplugin | ||
qgis_core | ||
qgis_gui | ||
) | ||
|
||
|
||
######################################################## | ||
# Install | ||
|
||
INSTALL(TARGETS interpolationplugin | ||
RUNTIME DESTINATION ${QGIS_PLUGIN_DIR} | ||
LIBRARY DESTINATION ${QGIS_PLUGIN_DIR}) |
Oops, something went wrong.