mirror of https://github.com/axmolengine/axmol.git
12 lines
269 B
Makefile
12 lines
269 B
Makefile
realtimestitching_cpp: main.cpp
|
|||
g++ -O3 -o realtimestitching main.cpp ../../api/lib/libfmodex.so -pthread
|
|||
|
|||
realtimestitching_c: main.c
|
|||
g++ -O3 -o realtimestitching main.c ../../api/lib/libfmodex.so -pthread
|
|||
|
|||
run:
|
|||
./realtimestitching
|
|||
|
|||
clean:
|
|||
rm -f realtimestitching
|