-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathWORKSPACE
More file actions
33 lines (26 loc) · 1.38 KB
/
WORKSPACE
File metadata and controls
33 lines (26 loc) · 1.38 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
workspace(name = "alpaca_cpp_starter_template")
################################################################################
# General Initialization
################################################################################
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
load("@bazel_tools//tools/build_defs/repo:git.bzl", "git_repository")
################################################################################
# C++ Dependencies
################################################################################
# alpaca-trade-api-cpp is a C++ client library for the Alpaca Trading API.
http_archive(
name = "com_github_marpaia_alpaca_trade_api_cpp",
strip_prefix = "alpaca-trade-api-cpp-0.0.3",
urls = ["https://github.com/marpaia/alpaca-trade-api-cpp/archive/v0.0.3.tar.gz"],
sha256 = "db9efe3dc92f4e1d7eb69d76cb807af6bcf61ea14fe73f30e22830002b34f81a",
)
load("@com_github_marpaia_alpaca_trade_api_cpp//bazel:deps.bzl", "alpaca_deps")
alpaca_deps()
# alternative alpaca-trade-api-cpp is a C++ client library for the Alpaca Trading API.
#http_archive(
# name = "com_github_marpaia_alpaca_trade_api_cpp",
# strip_prefix = "alpaca-trade-api-cpp-master",
# urls = ["https://github.com/aidanjalili/alpaca-trade-api-cpp/archive/master.tar.gz"],
#)
#load("@com_github_marpaia_alpaca_trade_api_cpp//bazel:deps.bzl", "alpaca_deps")
#alpaca_deps()