Skip to content

Commit

Permalink
Add spdlog dependency for gz-utils3 (#11)
Browse files Browse the repository at this point in the history
automerged PR by conda-forge/automerge-action
  • Loading branch information
github-actions[bot] authored Sep 29, 2024
2 parents c32877f + f708d03 commit 19177c1
Show file tree
Hide file tree
Showing 7 changed files with 23 additions and 3 deletions.
2 changes: 2 additions & 0 deletions .ci_support/linux_64_.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@ cxx_compiler_version:
- '13'
docker_image:
- quay.io/condaforge/linux-anvil-cos7-x86_64
spdlog:
- '1.12'
target_platform:
- linux-64
zip_keys:
Expand Down
2 changes: 2 additions & 0 deletions .ci_support/linux_aarch64_.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@ cxx_compiler_version:
- '13'
docker_image:
- quay.io/condaforge/linux-anvil-cos7-x86_64
spdlog:
- '1.12'
target_platform:
- linux-aarch64
zip_keys:
Expand Down
2 changes: 2 additions & 0 deletions .ci_support/linux_ppc64le_.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@ cxx_compiler_version:
- '13'
docker_image:
- quay.io/condaforge/linux-anvil-cos7-x86_64
spdlog:
- '1.12'
target_platform:
- linux-ppc64le
zip_keys:
Expand Down
2 changes: 2 additions & 0 deletions .ci_support/osx_64_.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@ cxx_compiler_version:
- '17'
macos_machine:
- x86_64-apple-darwin13.4.0
spdlog:
- '1.12'
target_platform:
- osx-64
zip_keys:
Expand Down
2 changes: 2 additions & 0 deletions .ci_support/osx_arm64_.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@ cxx_compiler_version:
- '17'
macos_machine:
- arm64-apple-darwin20.0.0
spdlog:
- '1.12'
target_platform:
- osx-arm64
zip_keys:
Expand Down
2 changes: 2 additions & 0 deletions .ci_support/win_64_.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,7 @@ channel_targets:
- conda-forge main
cxx_compiler:
- vs2019
spdlog:
- '1.12'
target_platform:
- win-64
14 changes: 11 additions & 3 deletions recipe/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ source:
- do_not_check_failed_test_output_value.patch # [linux]

build:
number: 0
number: 1

outputs:
- name: {{ cxx_name }}
Expand All @@ -41,18 +41,26 @@ outputs:
host:
- libgz-cmake4
- cli11
- spdlog
run:
- cli11
test:
commands:
- test -f ${PREFIX}/include/gz/{{ component_version }}/gz/{{ component_name }}.hh # [not win]
- test -f ${PREFIX}/lib/lib{{ name }}.so # [linux]
- test -f ${PREFIX}/lib/lib{{ name }}.dylib # [osx]
- test -f ${PREFIX}/lib/lib{{ name }}$SHLIB_EXT # [not win]
- test -f ${PREFIX}/lib/lib{{ name }}-log$SHLIB_EXT # [not win]
- test -f ${PREFIX}/lib/cmake/{{ name }}/{{ name }}-config.cmake # [not win]
- if not exist %PREFIX%\\Library\\include\\gz\\{{ component_version }}\\gz\\{{ component_name }}.hh exit 1 # [win]
- if not exist %PREFIX%\\Library\\lib\\{{ name }}.lib exit 1 # [win]
- if not exist %PREFIX%\\Library\\bin\\{{ name }}.dll exit 1 # [win]
- if not exist %PREFIX%\\Library\\lib\\cmake\\{{ name }}\\{{ name }}-config.cmake exit 1 # [win]
- if not exist %PREFIX%\\Library\\lib\\{{ name }}-log.lib exit 1 # [win]
- if not exist %PREFIX%\\Library\\bin\\{{ name }}-log.dll exit 1 # [win]
- cmake-package-check gz-utils3 --targets gz-utils3::gz-utils3
requires:
- cmake-package-check
- {{ compiler('c') }}
- {{ compiler('cxx') }}

- name: {{ name }}
build:
Expand Down

0 comments on commit 19177c1

Please sign in to comment.