Dup Goto 📝

CliExamples1

PT2/macos/xcode/build 11-03 13:05:14
To Pop
17 lines, 44 words, 362 chars Friday 2023-11-03 13:05:14

To build from the command line without the GUI.

displayctl

The source is here

To build

gcc -o displayctl main.c -framework IOKit -framework CoreFoundation

Or a Makefile

all: displayctl

displayctl: main.c
        gcc -o displayctl -framework IOKit -framework CoreFoundation main.c