Skip to content

Commit

Permalink
Merge branch 'main' into imgui
Browse files Browse the repository at this point in the history
  • Loading branch information
drhelius committed Feb 26, 2024
2 parents 3aa656c + 47daf6e commit 8b91371
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@
[![GitHub tag (with filter)](https://img.shields.io/github/v/tag/drhelius/Gearcoleco?label=version)](https://github.com/drhelius/Gearcoleco/releases)
[![commits)](https://img.shields.io/github/commit-activity/t/drhelius/Gearcoleco)](https://github.com/drhelius/Gearcoleco/commits/main)
[![GitHub contributors](https://img.shields.io/github/contributors/drhelius/Gearcoleco)](https://github.com/drhelius/Gearcoleco/graphs/contributors)
[![Percentage of issues still open](http://isitmaintained.com/badge/open/drhelius/gearcoleco.svg)](http://isitmaintained.com/project/drhelius/gearcoleco "Percentage of issues still open")
[![Average time to resolve an issue](http://isitmaintained.com/badge/resolution/drhelius/gearcoleco.svg)](http://isitmaintained.com/project/drhelius/gearcoleco "Average time to resolve an issue")
[![GitHub Sponsors](https://img.shields.io/github/sponsors/drhelius)](https://github.com/sponsors/drhelius)
[![GitHub](https://img.shields.io/github/license/drhelius/Gearcoleco)](https://github.com/drhelius/Gearcoleco/blob/main/LICENSE)
[![Twitter Follow](https://img.shields.io/twitter/follow/drhelius)](https://twitter.com/drhelius)
Expand Down
9 changes: 8 additions & 1 deletion platforms/macos/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,14 @@ LDFLAGS += -framework AppKit -framework UniformTypeIdentifiers

include ../desktop-shared/Makefile.common

DYLIB_PATH=/usr/local/opt/sdl2/lib
# Brew use a different path on Apple Silicon as on Intel
UNAME_P := $(shell uname -m)
ifneq ($(filter arm64%,$(UNAME_P)),)
DYLIB_PATH=/opt/homebrew/lib/
else
DYLIB_PATH=/usr/local/opt/sdl2/lib
endif

SDL_DYLIB=libSDL2-2.0.0.dylib
APP_NAME=Gearcoleco

Expand Down

0 comments on commit 8b91371

Please sign in to comment.