mirror of
https://github.com/syoyo/tinygltf.git
synced 2026-08-27 13:38:38 +00:00
10 lines
194 B
CMake
10 lines
194 B
CMake
cmake_minimum_required(VERSION 3.6)
|
|
project(gltfutil)
|
|
|
|
set(CMAKE_CXX_STANDARD 11)
|
|
|
|
include_directories(../../)
|
|
|
|
file(GLOB gltfutil_sources *.cc *.h)
|
|
add_executable(gltfutil ${gltfutil_sources})
|