mirror of
https://github.com/Relintai/sfw.git
synced 2024-11-15 00:06:17 +01:00
8 lines
221 B
Bash
Executable File
8 lines
221 B
Bash
Executable File
|
|
clang++ -std=c++14 -g -c sfwl.cpp -o sfwl.o
|
|
clang++ -std=c++14 -g -c main.cpp -o main.o
|
|
|
|
# You might need to add -lpthread and/or -latomic depending on your compiler version
|
|
|
|
clang++ -std=c++14 -g sfwl.o main.o -o game
|