Skip to content
Open
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
2 changes: 1 addition & 1 deletion .azure-pipelines/azure-pipelines-osx.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion recipe/bld.bat
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ cmake -G Ninja ^
-DCMAKE_BUILD_TYPE=Release ^
-DCMAKE_INSTALL_PREFIX:PATH="%LIBRARY_PREFIX%" ^
-DCMAKE_INCLUDE_PATH:PATH="%LIBRARY_INC%" ^
-DBULID_REMOTE_TESTS=OFF ^
-DBUILD_EXAMPLES=OFF ^
..
if errorlevel 1 exit 1
ninja install
Expand Down
3 changes: 2 additions & 1 deletion recipe/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@ cd build
cmake -DCMAKE_BUILD_TYPE=Release \
-DCMAKE_INSTALL_PREFIX="$PREFIX" \
-DCMAKE_INSTALL_LIBDIR=lib \
-DJSONARANGO_BUILD_EXAMPLES=OFF \
-DEnableSSE=OFF \
-DBUILD_EXAMPLES=OFF \
..
# Build step
make -j${CPU_COUNT}
Expand Down
18 changes: 12 additions & 6 deletions recipe/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,26 +1,32 @@
{% set version = "0.4.0" %}
{% set version = "0.5.0" %}

package:
name: jsonarango
version: {{ version }}

source:
url: https://bitbucket.org/gems4/jsonarango/get/v{{ version }}.tar.gz
sha256: 0b559c03fcc0656856e80cfc2c20d3ef19658014b1a30000cccf1d8557f7ca73
git_url: https://bitbucket.org/gems4/jsonarango.git
git_rev: v{{ version }}
git_depth: 3

build:
number: 1
number: 0
skip: true # [win and vc<14]

requirements:
build:
- {{ compiler('cxx') }}
- cmake
- ninja # [win]
- ninja
- make
- ccache # [unix]
host:
- git
- curl
- velocypack
- spdlog >=1.10.0
- ccache # [unix]
- nlohmann_json


test:
commands:
Expand Down