pantry/projects/google.com/googletest/package.yml

37 lines
748 B
YAML
Raw Normal View History

2023-04-11 22:41:53 +03:00
distributable:
url: https://github.com/google/googletest/archive/v{{version}}.tar.gz
strip-components: 1
versions:
github: google/googletest
build:
dependencies:
tea.xyz/gx/cc: c99
tea.xyz/gx/make: '*'
cmake.org: ^3
working-directory: build
script: |
cmake .. $ARGS
make --jobs {{ hw.concurrency }} install
env:
ARGS:
- -DBUILD_TESTING=OFF
- -DCMAKE_INSTALL_PREFIX={{prefix}}
- -DCMAKE_BUILD_TYPE=Release
test:
dependencies:
tea.xyz/gx/cc: c99
fixture: |
#include <gtest/gtest.h>
#include <gtest/gtest-death-test.h>
TEST(Simple, Boolean) {
ASSERT_TRUE(true);
}
script: |
mv $FIXTURE a.c
c++ a.c -std=c++14 -lgtest -lgtest_main -pthread
./a.out