forked from pz4kybsvg/Conception
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
694 B
21 lines
694 B
# This file marks a workspace root for the Bazel build system.
|
|
# See `https://bazel.build/`.
|
|
|
|
workspace(name = "drake")
|
|
|
|
load("//tools/workspace:default.bzl", "add_default_workspace")
|
|
|
|
add_default_workspace()
|
|
|
|
# Add some special heuristic logic for using CLion with Drake.
|
|
load("//tools/clion:repository.bzl", "drake_clion_environment")
|
|
|
|
drake_clion_environment()
|
|
|
|
load("@bazel_skylib//lib:versions.bzl", "versions")
|
|
|
|
# This needs to be in WORKSPACE or a repository rule for native.bazel_version
|
|
# to actually be defined. The minimum_bazel_version value should match the
|
|
# version passed to the find_package(Bazel) call in the root CMakeLists.txt.
|
|
versions.check(minimum_bazel_version = "4.0")
|