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
34 changes: 34 additions & 0 deletions projects/github.com/Esri/lerc/package.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
distributable:
url: https://github.com/Esri/lerc/archive/v{{version}}.tar.gz
strip-components: 1

versions:
github: Esri/lerc

build:
dependencies:
tea.xyz/gx/cc: c99
tea.xyz/gx/make: '*'
cmake.org: '*'

script:
- cmake -S . -B build $ARGS
- cmake --build build
- cmake --install build
env:
ARGS:
- -DCMAKE_INSTALL_PREFIX="{{prefix}}"
- -DCMAKE_BUILD_TYPE=Release
- -DCMAKE_VERBOSE_MAKEFILE=ON
- -DCMAKE_FIND_FRAMEWORK=LAST
- -Wno-dev
- -DBUILD_TESTING=OFF

test:
dependencies:
freedesktop.org/pkg-config: '*'
tea.xyz/gx/cc: c99
script:
- pkg-config --modversion Lerc | grep {{version}}
- cc test.cc -std=gnu++17 -lLerc -o test
- ./test
9 changes: 9 additions & 0 deletions projects/github.com/Esri/lerc/test.cc
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
#include <Lerc_c_api.h>
#include <Lerc_types.h>
int main() {
const int infoArrSize = (int)LercNS::InfoArrOrder::_last;
const int dataRangeArrSize = (int)LercNS::DataRangeArrOrder::_last;
lerc_status hr(0);

return 0 ;
}