Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion .ci_support/linux_64_.yaml
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
c_compiler:
- gcc
c_compiler_version:
- '13'
c_stdlib:
- sysroot
c_stdlib_version:
Expand Down Expand Up @@ -31,4 +35,7 @@ qt6_main:
target_platform:
- linux-64
vtk:
- 9.3.1
- 9.4.1
zip_keys:
- - c_compiler_version
- cxx_compiler_version
9 changes: 8 additions & 1 deletion .ci_support/linux_aarch64_.yaml
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
c_compiler:
- gcc
c_compiler_version:
- '13'
c_stdlib:
- sysroot
c_stdlib_version:
Expand Down Expand Up @@ -31,4 +35,7 @@ qt6_main:
target_platform:
- linux-aarch64
vtk:
- 9.3.1
- 9.4.1
zip_keys:
- - c_compiler_version
- cxx_compiler_version
9 changes: 8 additions & 1 deletion .ci_support/linux_ppc64le_.yaml
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
c_compiler:
- gcc
c_compiler_version:
- '13'
c_stdlib:
- sysroot
c_stdlib_version:
Expand Down Expand Up @@ -29,4 +33,7 @@ qhull:
target_platform:
- linux-ppc64le
vtk:
- 9.3.1
- 9.4.1
zip_keys:
- - c_compiler_version
- cxx_compiler_version
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
__migrator:
build_number: 1
kind: version
commit_message: "Rebuild for vtk 9.4.1"
migration_number: 1
migrator_ts: 1742567043.969102
vtk_base:
- 9.4.1
vtk:
- 9.4.1
__migrator:
build_number: 1
kind: version
commit_message: "Rebuild for vtk 9.4.1"
migration_number: 1
migrator_ts: 1742567043.969102
vtk_base:
- 9.4.1
vtk:
- 9.4.1
9 changes: 8 additions & 1 deletion .ci_support/osx_64_.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@ MACOSX_DEPLOYMENT_TARGET:
- '11.0'
MACOSX_SDK_VERSION:
- '12.3'
c_compiler:
- clang
c_compiler_version:
- '18'
c_stdlib:
- macosx_deployment_target
c_stdlib_version:
Expand Down Expand Up @@ -33,4 +37,7 @@ qt6_main:
target_platform:
- osx-64
vtk:
- 9.3.1
- 9.4.1
zip_keys:
- - c_compiler_version
- cxx_compiler_version
9 changes: 8 additions & 1 deletion .ci_support/osx_arm64_.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@ MACOSX_DEPLOYMENT_TARGET:
- '11.0'
MACOSX_SDK_VERSION:
- '12.3'
c_compiler:
- clang
c_compiler_version:
- '18'
c_stdlib:
- macosx_deployment_target
c_stdlib_version:
Expand Down Expand Up @@ -33,4 +37,7 @@ qt6_main:
target_platform:
- osx-arm64
vtk:
- 9.3.1
- 9.4.1
zip_keys:
- - c_compiler_version
- cxx_compiler_version
4 changes: 3 additions & 1 deletion .ci_support/win_64_.yaml
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
c_compiler:
- vs2019
c_stdlib:
- vs
channel_sources:
Expand Down Expand Up @@ -25,4 +27,4 @@ target_platform:
tbb_devel:
- '2021'
vtk:
- 9.3.1
- 9.4.1
14 changes: 12 additions & 2 deletions recipe/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ source:
sha256: {{ sha256 }}

build:
number: 1
number: 2
run_exports:
- {{ pin_subpackage('pcl', max_pin='x.x.x') }}

Expand All @@ -33,7 +33,7 @@ requirements:
- flann
- eigen
- libboost-devel
- tbb-devel # [win]
- tbb-devel
- qhull
- vtk
- libpng
Expand All @@ -43,11 +43,21 @@ requirements:
- flann
- qhull
- glew
# This dependencies are required for find_package(PCL) to be successful
- libboost-devel
- tbb-devel
- libgl-devel # [linux]

test:
commands:
- test -d $PREFIX/include/{{ name }}-{{ major_version }}.{{ minor_version }}/{{ name }} # [not win]
- if not exist %LIBRARY_INC%\\{{ name }}-{{ major_version }}.{{ minor_version }}\\{{ name }} exit 1 # [win]
- cmake-package-check PCL
requires:
- cmake-package-check
- {{ compiler('c') }}
- {{ compiler('cxx') }}


about:
home: http://www.pointclouds.org
Expand Down
Loading