From 096a1bce88f4773a3f3d7a389a47985ea0cd5b0a Mon Sep 17 00:00:00 2001 From: mrJean1 <22154337+mrJean1@users.noreply.github.com> Date: Wed, 4 Jan 2023 13:00:21 -0500 Subject: [PATCH] Update for macOS Added INSTALLED_INCLUDE_DIR for usage with make on macOS. --- Makefile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Makefile b/Makefile index b60a0ab..d608cb1 100644 --- a/Makefile +++ b/Makefile @@ -4,9 +4,13 @@ DEV_INCLUDE_DIR=../../include/vlc UNAME_S := $(shell uname -s) ifeq ($(UNAME_S),FreeBSD) INSTALLED_INCLUDE_DIR=/usr/local/include/vlc +else +ifeq ($(UNAME_S),Darwin) + INSTALLED_INCLUDE_DIR=/Applications/VLC.app/Contents/MacOS/include/vlc else INSTALLED_INCLUDE_DIR=/usr/include/vlc endif +endif PROJECT_ROOT=$(shell pwd)