Skip to content

Commit

Permalink
Bump PDAL dylib version up (#106)
Browse files Browse the repository at this point in the history
  • Loading branch information
pomadchin authored Sep 11, 2024
1 parent 0a9e556 commit 91759ff
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion core/src/main/scala/io/pdal/Pipeline.scala
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ class Pipeline private (val json: String, val logLevel: Int) extends Native {
def getLogLevel(): LogLevel.Value = LogLevel.apply(getLogLevelInt())
}

object Pipeline extends NativeLoader("pdaljni.2.7") {
object Pipeline extends NativeLoader("pdaljni.2.8") {
def apply(json: String, logLevel: LogLevel.Value = LogLevel.Error): Pipeline =
new Pipeline(json, logLevel)
}
2 changes: 1 addition & 1 deletion native/src/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ set(MAKE_COLOR_MAKEFILE ON)

project (pdaljni)
set(PROJECT_VERSION_MAJOR 2)
set(PROJECT_VERSION_MINOR 7)
set(PROJECT_VERSION_MINOR 8)
set(PROJECT_VERSION_PATCH 0)

set(PDAL_LIB_NAME pdalcpp)
Expand Down

0 comments on commit 91759ff

Please sign in to comment.