We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fdabd27 commit f2fdc7cCopy full SHA for f2fdc7c
CMakeLists.txt
@@ -1,12 +1,11 @@
1
-cmake_minimum_required(VERSION 3.11.0)
+cmake_minimum_required(VERSION 3.16.0)
2
project(pdal-python VERSION ${SKBUILD_PROJECT_VERSION}
3
DESCRIPTION "PDAL Python bindings"
4
HOMEPAGE_URL "https://github.com/PDAL/Python")
5
6
set(CMAKE_CXX_STANDARD 17)
7
set(CMAKE_CXX_STANDARD_REQUIRED ON)
8
set(CMAKE_CXX_EXTENSIONS OFF)
9
-set(CMAKE_BUILD_TYPE "Release")
10
11
# Python-finding settings
12
set(Python3_FIND_STRATEGY "LOCATION")
@@ -25,7 +24,7 @@ endif()
25
24
find_package(Python3 COMPONENTS Interpreter ${DEVELOPMENT_COMPONENT} NumPy REQUIRED)
26
27
# find PDAL. Require 2.1+
28
-find_package(PDAL 2.6 REQUIRED)
+find_package(PDAL 2.7 REQUIRED)
29
30
# find PyBind11
31
find_package(pybind11 REQUIRED)
0 commit comments