Skip to content

Commit

Permalink
add algorithm to native algorithms
Browse files Browse the repository at this point in the history
  • Loading branch information
root676 authored and nyalldawson committed Oct 24, 2021
1 parent 7f22063 commit 3b556c7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/analysis/CMakeLists.txt
Expand Up @@ -185,6 +185,7 @@ set(QGIS_ANALYSIS_SRCS
processing/qgsalgorithmsetmvalue.cpp
processing/qgsalgorithmsetvariable.cpp
processing/qgsalgorithmsetzvalue.cpp
processing/qgsalgorithmshortestline.cpp
processing/qgsalgorithmshortestpathlayertopoint.cpp
processing/qgsalgorithmshortestpathpointtolayer.cpp
processing/qgsalgorithmshortestpathpointtopoint.cpp
Expand Down
2 changes: 2 additions & 0 deletions src/analysis/processing/qgsnativealgorithms.cpp
Expand Up @@ -175,6 +175,7 @@
#include "qgsalgorithmsetmvalue.h"
#include "qgsalgorithmsetvariable.h"
#include "qgsalgorithmsetzvalue.h"
#include "qgsalgorithmshortestline.h"
#include "qgsalgorithmshortestpathlayertopoint.h"
#include "qgsalgorithmshortestpathpointtolayer.h"
#include "qgsalgorithmshortestpathpointtopoint.h"
Expand Down Expand Up @@ -457,6 +458,7 @@ void QgsNativeAlgorithms::loadAlgorithms()
addAlgorithm( new QgsSetProjectVariableAlgorithm() );
addAlgorithm( new QgsSetZValueAlgorithm() );
addAlgorithm( new QgsShapefileEncodingInfoAlgorithm() );
addAlgorithm( new QgsShortestLineAlgorithm() );
addAlgorithm( new QgsShortestPathLayerToPointAlgorithm() );
addAlgorithm( new QgsShortestPathPointToLayerAlgorithm() );
addAlgorithm( new QgsShortestPathPointToPointAlgorithm() );
Expand Down

0 comments on commit 3b556c7

Please sign in to comment.