mirror of
https://github.com/Relintai/sfw.git
synced 2024-11-15 00:06:17 +01:00
12 lines
314 B
Bash
12 lines
314 B
Bash
|
|
||
|
cp -u ../tools/merger/out/sfwl_core/sfwl.h sfwl.h
|
||
|
cp -u .../tools/merger/out/sfwl_core/sfwl.cpp sfwl.cpp
|
||
|
|
||
|
ccache g++ -Wall -g -c sfwl.cpp -o sfwl.o
|
||
|
ccache g++ -Wall -g -c main.cpp -o main.o
|
||
|
|
||
|
#-static-libgcc -static-libstdc++
|
||
|
|
||
|
ccache g++ -Wall -lpthread -static-libgcc -static-libstdc++ -g sfwl.o main.o -o game
|
||
|
|