mirror of
https://github.com/ivabus/pantry
synced 2024-11-10 18:45:19 +03:00
39 lines
851 B
YAML
39 lines
851 B
YAML
distributable:
|
|
url: https://github.com/facebookexperimental/edencommon/archive/v2023.06.19.00.tar.gz
|
|
strip-components: 1
|
|
|
|
versions:
|
|
github: facebookexperimental/edencommon/tags
|
|
|
|
dependencies:
|
|
facebook.com/folly: '*'
|
|
gflags.github.io: '*'
|
|
google.com/glog: '*'
|
|
openssl.org: ^1.1
|
|
sourceware.org/bzip2: ^1
|
|
|
|
build:
|
|
dependencies:
|
|
cmake.org: '*'
|
|
google.com/googletest: '*'
|
|
boost.org: ^1
|
|
|
|
script: |
|
|
cmake -S . -B _build $ARGS
|
|
cmake --build _build
|
|
cmake --install _build
|
|
env:
|
|
ARGS:
|
|
- -DBUILD_SHARED_LIBS=ON
|
|
- -DCMAKE_INSTALL_PREFIX={{prefix}}
|
|
- -DCMAKE_INSTALL_LIBDIR=lib
|
|
- -DCMAKE_BUILD_TYPE=Release
|
|
- -DCMAKE_VERBOSE_MAKEFILE=ON
|
|
- -Wno-dev
|
|
- -DBUILD_TESTING=OFF
|
|
|
|
test:
|
|
script: |
|
|
g++ -std=c++17 test.cc -o test -ledencommon_utils -lfolly
|
|
./test | grep test
|