https://github.com/chokobole/base
A C++ base library
https://github.com/chokobole/base
cpp cpp-library cpp14
Last synced: 15 days ago
JSON representation
A C++ base library
- Host: GitHub
- URL: https://github.com/chokobole/base
- Owner: chokobole
- License: other
- Created: 2019-12-30T12:15:22.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2020-02-11T06:36:24.000Z (over 5 years ago)
- Last Synced: 2025-02-17T03:42:58.321Z (3 months ago)
- Topics: cpp, cpp-library, cpp14
- Language: C++
- Homepage:
- Size: 486 KB
- Stars: 1
- Watchers: 2
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Base
A C++ base library.
## Contents
- [Base](#base)
- [Contents](#contents)
- [How to use](#how-to-use)## How to use
To use `base`, add the followings to your `WORKSPACE` file.
```python
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")# If you want to use a specific version, use like below.
http_archive(
name = "com_chokobole_base",
sha256 = "",
strip_prefix = "base-",
urls = [
"https://github.com/chokobole/base/archive/.tar.gz",
],
)# Or if you just try, use like below.
http_archive(
name = "com_chokobole_base",
strip_prefix = "base-master",
urls = [
"https://github.com/chokobole/base/archive/master.tar.gz",
],
)load("@com_chokobole_base//bazel:base_deps.bzl", "base_deps")
base_deps()
```