mirror of
https://github.com/varun-r-mallya/pylibbpf.git
synced 2026-02-12 16:11:00 +00:00
39 lines
488 B
YAML
39 lines
488 B
YAML
package:
|
|
name: cmake_example
|
|
version: 0.0.1
|
|
|
|
source:
|
|
path: ..
|
|
|
|
build:
|
|
number: 0
|
|
script: {{ PYTHON }} -m pip install . -vvv
|
|
|
|
requirements:
|
|
build:
|
|
- "{{ compiler('cxx') }}"
|
|
- cmake
|
|
- ninja
|
|
|
|
host:
|
|
- python
|
|
- pip !=22.1.0
|
|
|
|
run:
|
|
- python
|
|
|
|
|
|
test:
|
|
requires:
|
|
- pytest
|
|
imports:
|
|
- cmake_example
|
|
source_files:
|
|
- tests
|
|
commands:
|
|
- python -m pytest
|
|
|
|
about:
|
|
summary: A CMake example project built with pybind11.
|
|
license_file: LICENSE
|