mirror of
https://git.mirrors.martin98.com/https://github.com/syoyo/tinygltf.git
synced 2025-09-23 18:33:15 +08:00
14 lines
371 B
Makefile
14 lines
371 B
Makefile
ABC_INC := -I/usr/local/include
|
|
ABC_LDFLAGS := -L/usr/local/lib -lAlembic
|
|
|
|
ILMBASE_INC := -I/usr/local/include/OpenEXR
|
|
|
|
# Suppress some C++ warnings(in clang).
|
|
EXTRA_CXXFLAGS := -Wno-deprecated-register -Weverything
|
|
|
|
all:
|
|
clang++ -std=c++11 -g -o abc2gltf $(ABC_INC) $(ILMBASE_INC) $(EXTRA_CXXFLAGS) abc2gltf.cc $(ABC_LDFLAGS)
|
|
|
|
run:
|
|
./abc2gltf suzanne.abc suzanne.gltf
|