mirror of
https://git.mirrors.martin98.com/https://github.com/syoyo/tinygltf.git
synced 2025-08-14 04:55:59 +08:00
10 lines
298 B
Makefile
10 lines
298 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 -Wno-c++98-compat
|
|
|
|
all:
|
|
clang++ $(EXTRA_CXXFLAGS) -std=c++11 -g -O0 -o loader_example loader_example.cc
|
|
|
|
lint:
|
|
./cpplint.py tiny_gltf_loader.h
|