From 0f5a18991f320a2df370994326f882a144c45b02 Mon Sep 17 00:00:00 2001 From: Nicholas Tay Date: Thu, 3 Nov 2022 00:56:38 +1100 Subject: Initial macOS support (key hooking only, no sound yet) Thought I'd commit this first, since it'll be some Objective-C stuff coming (tested it out in another mini probe). Mostly has stuff similar to Linux so probably should abstract some out to *nix common. But uses IOKit to get into the typing events. Will use Obj-C for now for sound, since it'll probably be a NSSound thing, hooked up with NSCache (like Linux) to reduce loading into NS format multiple times. Also probably would need to free the sound object on finish sound, and not sure how I'd do Obj-C delegates from C... it would be fun to figure it out though eventually Also switched the Makefile to use clang, it's warnings do seem to be nicer :) and is what `gcc` is aliased to on a Mac by default anyway. --- Makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 1fdf54f..e21da87 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,7 @@ NAME = clak PREFIX = $(HOME)/.local -CC = gcc +CC = clang CFLAGS += -std=c99 -Wall -Wextra -Wshadow -Werror ifeq ($(OS),Windows_NT) @@ -14,6 +14,9 @@ else PKG_CONF_LIBS = sdl2 SDL2_mixer x11 xi CFLAGS += `pkg-config --cflags $(PKG_CONF_LIBS)` LDLIBS += `pkg-config --libs $(PKG_CONF_LIBS)` + else ifeq ($(UNAME_S),Darwin) + PLATFORM = darwin + CFLAGS += -framework CoreFoundation -framework IOKit -framework AppKit endif endif -- cgit