forked from dartsim/dart
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBrewfile
More file actions
39 lines (35 loc) · 931 Bytes
/
Brewfile
File metadata and controls
39 lines (35 loc) · 931 Bytes
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
32
33
34
35
36
37
38
39
# Homebrew dependencies for building DART on macOS
#
# NOTE: If you're using pixi, you don't need this file!
# Pixi manages all dependencies automatically via pixi.toml
#
# This Brewfile is for users who want to build DART manually
# without pixi using Homebrew packages.
#
# Usage:
# brew bundle
#
# For pixi users, instead run:
# pixi install
# pixi run build
tap 'osrf/simulation'
# Build dependencies
brew 'cmake'
brew 'ninja'
brew 'pkg-config'
brew 'tracy'
brew 'assimp'
brew 'bullet'
brew 'eigen'
brew 'fcl'
brew 'fmt'
brew 'octomap'
# brew 'ode' # disabled until https://github.com/dartsim/dart/actions/runs/8477285794/job/23227980022 is resolved
# brew 'open-scene-graph' # disabled until 3.7.0 is released
brew 'spdlog'
# Replace with the latest sdformat formula from the osrf/simulation tap when available.
brew 'osrf/simulation/sdformat13'
brew 'tinyxml2'
brew 'urdfdom'
# dartpy dependencies
brew 'python3'