Sign in
flutter
/
third_party
/
tinygltf
/
refs/heads/json11
/
.
/
examples
/
gltfutil
/
CMakeLists.txt
blob: 4b51891579019fc9b6502c0ec66e8a5c6b11c95f [
file
] [
log
] [
blame
] [
edit
]
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})
install ( TARGETS
gltfutil
DESTINATION
bin
)