mirror of
https://github.com/Relintai/sfw.git
synced 2024-11-15 00:06:17 +01:00
15 lines
536 B
Bash
Executable File
15 lines
536 B
Bash
Executable File
|
|
export SDKROOT=$(xcrun --show-sdk-path)
|
|
|
|
export args="-std=c++14 -w -framework cocoa -framework iokit -framework CoreFoundation -framework CoreAudio -framework AudioToolbox "
|
|
|
|
clang++ $args -g -c sfw.cpp -o sfw.o
|
|
|
|
clang++ -w -framework cocoa -framework iokit -framework CoreFoundation -framework CoreAudio -framework AudioToolbox -g -c sfw_3rd.m -o sfw_3rd.o
|
|
|
|
clang++ $args -g -c main.cpp -o main.o
|
|
|
|
# You might need to add -lpthread and/or -latomic depending on your compiler version
|
|
|
|
clang++ $args -g sfw.o sfw_3rd.o main.o -o game
|