mirror of
https://git.mirrors.martin98.com/https://github.com/syoyo/tinygltf.git
synced 2025-08-03 02:00:42 +08:00
8 lines
298 B
Meson
8 lines
298 B
Meson
project('mesh-modify', 'cpp', default_options : ['cpp_std=c++11'])
|
|
|
|
thread_dep = dependency('threads')
|
|
|
|
incdir = include_directories(['../../', '../common'])
|
|
|
|
executable('mesh-modify', ['mesh-modify.cc', 'mesh-util.cc', 'tinygltf_impl.cc'], include_directories : incdir, dependencies : thread_dep)
|