mirror of
https://git.mirrors.martin98.com/https://github.com/syoyo/tinygltf.git
synced 2025-07-08 17:51:50 +08:00
10 lines
294 B
Makefile
10 lines
294 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:
|
|
deps/cpplint.py tiny_gltf.h
|