Skip to content
Merged
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
6 changes: 6 additions & 0 deletions recipe/bld.bat
Original file line number Diff line number Diff line change
@@ -1,2 +1,8 @@
cmake %CMAKE_ARGS% -G Ninja -LAH -DCMAKE_BUILD_TYPE=Release -B tmp-build .
if errorlevel 1 exit 1

cmake --build tmp-build --parallel %CPU_COUNT%
if errorlevel 1 exit 1

%PYTHON% -m pip install . -vv
if errorlevel 1 exit 1
2 changes: 1 addition & 1 deletion recipe/build.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
cmake ${CMAKE_ARGS} -LAH -DCMAKE_BUILD_TYPE=Release -B tmp-build .
cmake ${CMAKE_ARGS} -G Ninja -LAH -DCMAKE_BUILD_TYPE=Release -B tmp-build .
cmake --build tmp-build --parallel ${CPU_COUNT}

$PYTHON -m pip install . -vv
4 changes: 2 additions & 2 deletions recipe/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ source:
- clang.patch

build:
number: 0
number: 1
python_version_independent: true # [is_abi3]
skip: true # [is_abi3 and not is_python_min]
entry_points:
Expand All @@ -23,7 +23,7 @@ requirements:
- {{ stdlib("c") }}
- {{ compiler('cxx') }}
- cmake
- make # [unix]
- ninja
host:
- python
- python-abi3 # [is_abi3]
Expand Down