From f88bef134e0144fe5a9884078c67d7339ea6940a Mon Sep 17 00:00:00 2001 From: Mizux Seiha Date: Thu, 14 Jan 2021 21:59:32 +0100 Subject: [PATCH] bazel: Update README.md --- bazel/README.md | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/bazel/README.md b/bazel/README.md index 2cbc2be993..bbd4f4c218 100644 --- a/bazel/README.md +++ b/bazel/README.md @@ -7,6 +7,7 @@ ## Introduction @@ -18,7 +19,8 @@ you can download it for free from . **warning: Currently OR-Tools Bazel doesn't support Python, Java nor .Net, please use the Makefile or CMake based build instead.** -## [Dependencies](#deps) + +## Dependencies OR-Tools depends on severals mandatory libraries. * Google Abseil-cpp, @@ -28,10 +30,13 @@ OR-Tools depends on severals mandatory libraries. * SCIP, * GLPK (GNU Linear Programming Kit) + ## Compilation You must compile OR-Tools using C++17: * on UNIX: `--cxxopt=-std=c++17` * on Windows when using MSVC: `--cxxopt="-std:c++17"` -## [Integrating OR-Tools in your Bazel Project](#integration) -TODO + +## Integrating OR-Tools in your Bazel Project +You can take a look at the template project: +[or-tools/bazel\_or-tools](https://github.com/or-tools/bazel_or-tools).