Skip to content
This repository was archived by the owner on Dec 17, 2023. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ VERSION=2.2

CC=llvm-g++
PACKAGE_BUILD=/usr/bin/pkgbuild
ARCH_FLAGS=-arch x86_64

.PHONY: build

Expand All @@ -22,7 +21,7 @@ RDM.app: SetResX Resources Info.plist monitor.icns


SetResX: main.o SRApplicationDelegate.o ResMenuItem.o cmdline.o utils.o
$(CC) $^ -o $@ $(ARCH_FLAGS) -framework Foundation -framework ApplicationServices -framework AppKit
$(CC) $^ -o $@ -framework Foundation -framework ApplicationServices -framework AppKit


clean:
Expand Down
3 changes: 2 additions & 1 deletion utils.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@

#import <CoreGraphics/CGDirectDisplay.h>
#import <CoreGraphics/CGDisplayConfiguration.h>

typedef union
{
Expand Down