aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorSyoyo Fujita <syoyo@lighttransport.com>2016-04-18 17:59:17 +0900
committerSyoyo Fujita <syoyo@lighttransport.com>2016-04-18 17:59:17 +0900
commit90d33c33c02359b3a545664cd60eae84d04788a2 (patch)
tree0ec479009b493ff5807e6662d004744f3976c02b /tests
parent1e663342bf8d3ea41378e536abd26a609cb45ca0 (diff)
downloadtinyobjloader-90d33c33c02359b3a545664cd60eae84d04788a2.tar.gz
Fix CI scripts.
Diffstat (limited to 'tests')
-rw-r--r--tests/Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/tests/Makefile b/tests/Makefile
index 1a1434a..4a18c71 100644
--- a/tests/Makefile
+++ b/tests/Makefile
@@ -1,7 +1,10 @@
.PHONY: clean
+CXX ?= g++
+CXXFLAGS ?= -g -O2
+
tester: tester.cc
- g++ -g -O0 -o tester tester.cc
+ $(CXX) $(CXXFLAGS) -o tester tester.cc
all: tester