* +glog

* +double-conversion (#436)

* +double-conversion

* fix test
This commit is contained in:
Marc Seitz 2023-03-06 12:51:04 -07:00 committed by GitHub
parent 5e2d3f5309
commit e2e2e4160e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -0,0 +1,42 @@
distributable:
url: https://github.com/google/glog/archive/refs/tags/v{{version}}.tar.gz
strip-components: 1
versions:
github: google/glog/tags
strip: /^v/
dependencies:
gflags.github.io: '*'
build:
dependencies:
tea.xyz/gx/cc: c99
tea.xyz/gx/make: '*'
cmake.org: '*'
script: |
cmake -S . -B build -G "Unix Makefiles" $ARGS
cmake --build build
cmake --build build --target install
env:
ARGS:
- -DCMAKE_INSTALL_PREFIX={{prefix}}
- -DBUILD_SHARED_LIBS=ON
test:
dependencies:
tea.xyz/gx/cc: c99
fixture: |
#include <glog/logging.h>
#include <iostream>
#include <memory>
int main(int argc, char* argv[])
{
google::InitGoogleLogging(argv[0]);
LOG(INFO) << "test";
}
script: |
mv $FIXTURE test.cpp
g++ test.cpp -lglog -lgflags -o test
./test