Skip to content

Commit

Permalink
fixing homebrew path
Browse files Browse the repository at this point in the history
  • Loading branch information
Kbz-8 committed Dec 16, 2024
1 parent d3808cd commit 335c797
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 14 deletions.
4 changes: 0 additions & 4 deletions .github/workflows/linux_clang.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,6 @@ jobs:
if: "!contains(github.event.head_commit.message, 'ci skip')"

steps:
- name: Get current date as package key
id: cache_key
run: echo "key=$(date +'%W')" >> $GITHUB_OUTPUT

- name: Checkout repository
uses: actions/checkout@v4

Expand Down
4 changes: 0 additions & 4 deletions .github/workflows/linux_gcc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,6 @@ jobs:
if: "!contains(github.event.head_commit.message, 'ci skip')"

steps:
- name: Get current date as package key
id: cache_key
run: echo "key=$(date +'%W')" >> $GITHUB_OUTPUT

- name: Checkout repository
uses: actions/checkout@v4

Expand Down
4 changes: 0 additions & 4 deletions .github/workflows/macos_x86.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,6 @@ jobs:
if: "!contains(github.event.head_commit.message, 'ci skip')"

steps:
- name: Get current date as package key
id: cache_key
run: echo "key=$(date +'%W')" >> $GITHUB_OUTPUT

- name: Checkout repository
uses: actions/checkout@v4

Expand Down
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,8 @@ else
endif

ifeq ($(OS), Darwin)
LDFLAGS += -L /opt/homebrew/lib -lSDL2
CXXFLAGS += -I /opt/homebrew/include
LDFLAGS += -L /opt/homebrew/Cellar/lib -lSDL2
CXXFLAGS += -I /opt/homebrew/Cellar/include
NAME = libmlx.dylib
endif

Expand Down

0 comments on commit 335c797

Please sign in to comment.