Files
ortools-clone/WORKSPACE

49 lines
1.7 KiB
Python
Raw Normal View History

2017-03-21 13:46:09 -04:00
#Import the gflags files.
2017-03-21 10:24:39 -04:00
git_repository(
name = "com_github_gflags_gflags",
commit = "f8a0efe03aa69b3336d8e228b37d4ccb17324b88",
remote = "https://github.com/gflags/gflags.git",
)
2017-05-23 13:55:19 +02:00
#Import the glog files.
new_git_repository(
name = "com_github_glog_glog",
build_file = "//bazel:glog.BUILD",
remote = "https://github.com/google/glog.git",
tag = "v0.3.5",
)
2017-03-21 10:24:39 -04:00
# proto_library rules implicitly depend on @com_google_protobuf//:protoc,
# which is the proto-compiler.
# This statement defines the @com_google_protobuf repo.
http_archive(
name = "com_google_protobuf",
urls = ["https://github.com/google/protobuf/archive/b4b0e304be5a68de3d0ee1af9b286f958750f5e4.zip"],
strip_prefix = "protobuf-b4b0e304be5a68de3d0ee1af9b286f958750f5e4",
sha256 = "ff771a662fb6bd4d3cc209bcccedef3e93980a49f71df1e987f6afa3bcdcba3a",
)
2017-03-21 16:29:05 -04:00
# cc_proto_library rules implicitly depend on
# @com_google_protobuf_cc//:cc_toolchain, which is the C++ proto runtime
# (base classes and common utilities).
2017-03-21 10:24:39 -04:00
http_archive(
name = "com_google_protobuf_cc",
urls = ["https://github.com/google/protobuf/archive/b4b0e304be5a68de3d0ee1af9b286f958750f5e4.zip"],
strip_prefix = "protobuf-b4b0e304be5a68de3d0ee1af9b286f958750f5e4",
sha256 = "ff771a662fb6bd4d3cc209bcccedef3e93980a49f71df1e987f6afa3bcdcba3a",
)
2017-03-30 14:50:36 +02:00
new_http_archive(
name = "gtest",
url = "https://github.com/google/googletest/archive/release-1.8.0.zip",
2017-04-20 13:43:01 +02:00
build_file = "//bazel:gtest.BUILD",
2017-03-30 15:01:10 +02:00
strip_prefix = "googletest-release-1.8.0/googletest",
)
new_http_archive(
name = "glpk",
2017-04-20 13:34:01 +02:00
url = "http://ftp.gnu.org/gnu/glpk/glpk-4.52.tar.gz",
sha256 = "9a5dab356268b4f177c33e00ddf8164496dc2434e83bd1114147024df983a3bb",
2017-04-20 14:21:27 +02:00
build_file = "//bazel:glpk.BUILD",
)