Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions Brewfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
brew "autoconf"
brew "autoconf-archive"
brew "automake"
brew "bison"
brew "cmake"
brew "flex"
brew "libtool"
brew "make"
brew "ninja"
brew "pkg-config"
1 change: 1 addition & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ prune _skbuild
# Dependency management
include vcpkg.json
prune vcpkg
exclude Brewfile

# IDE / VCS / docs files
prune .git
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ endif
.PHONY: dependencies-mac dependencies-debian dependencies-fedora dependencies-vcpkg dependencies-win

dependencies-mac: ## install dependencies for mac
HOMEBREW_NO_AUTO_UPDATE=1 brew install autoconf autoconf-archive automake bison cmake flex libtool make ninja pkg-config
HOMEBREW_NO_AUTO_UPDATE=1 brew bundle install
brew unlink bison flex && brew link --force bison flex

dependencies-debian: ## install dependencies for linux
Expand Down
Loading