mirror of
https://git.mirrors.martin98.com/https://github.com/syoyo/tinygltf.git
synced 2025-08-05 16:40:38 +08:00
10 lines
304 B
Makefile
10 lines
304 B
Makefile
|
|
# Use this for strict compilation check(will work on clang 3.8+)
|
|
#EXTRA_CXXFLAGS := -fsanitize=address -Wall -Werror -Weverything -Wno-c++11-long-long -DTINYGLTF_APPLY_CLANG_WEVERYTHING
|
|
|
|
all:
|
|
clang++ $(EXTRA_CXXFLAGS) -g -O0 -o loader_example loader_example.cc
|
|
|
|
lint:
|
|
./cpplint.py tiny_gltf_loader.h
|