mirror of
https://github.com/lighttransport/tinyusdz.git
synced 2026-01-18 01:11:17 +01:00
Update all CMakeLists.txt, Makefiles, meson.build, setup.py, and documentation files to use C++17 standard. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
12 lines
286 B
Makefile
12 lines
286 B
Makefile
CXX = g++
|
|
CXXFLAGS = -std=c++17 -I../../../src -I../../../
|
|
LDFLAGS = -L../../../build -ltinyusdz_static -lpthread
|
|
|
|
test_grouped_params: test_grouped_params.cc
|
|
$(CXX) $(CXXFLAGS) -o test_grouped_params test_grouped_params.cc $(LDFLAGS)
|
|
|
|
clean:
|
|
rm -f test_grouped_params
|
|
|
|
.PHONY: clean
|