mirror of
https://git.mirrors.martin98.com/https://github.com/syoyo/tinygltf.git
synced 2025-04-21 13:39:54 +08:00
48 lines
1.1 KiB
CMake
48 lines
1.1 KiB
CMake
cmake_minimum_required(VERSION 3.6)
|
|
|
|
PROJECT (tinygltf)
|
|
|
|
SET(CMAKE_CXX_STANDARD 11)
|
|
|
|
option(TINYGLTF_BUILD_LOADER_EXAMPLE "Build loader_example" ON)
|
|
option(TINYGLTF_BUILD_GL_EXAMPLES "Build GL exampels(requires glfw, OpenGL, etc)" OFF)
|
|
option(TINYGLTF_BUILD_VALIDATOR_EXAMPLE "Build validator example" OFF)
|
|
option(TINYGLTF_BUILD_BUILDER_EXAMPLE "Build glTF builder example" OFF)
|
|
|
|
if (TINYGLTF_BUILD_LOADER_EXAMPLE)
|
|
ADD_EXECUTABLE ( loader_example
|
|
loader_example.cc
|
|
)
|
|
endif (TINYGLTF_BUILD_LOADER_EXAMPLE)
|
|
|
|
if (TINYGLTF_BUILD_GL_EXAMPLES)
|
|
ADD_SUBDIRECTORY ( examples/gltfutil )
|
|
ADD_SUBDIRECTORY ( examples/glview )
|
|
endif (TINYGLTF_BUILD_GL_EXAMPLES)
|
|
|
|
if (TINYGLTF_BUILD_VALIDATOR_EXAMPLE)
|
|
ADD_SUBDIRECTORY ( examples/validator )
|
|
endif (TINYGLTF_BUILD_VALIDATOR_EXAMPLE)
|
|
|
|
if (TINYGLTF_BUILD_BUILDER_EXAMPLE)
|
|
ADD_SUBDIRECTORY ( examples/build-gltf )
|
|
endif (TINYGLTF_BUILD_BUILDER_EXAMPLE)
|
|
|
|
#
|
|
# TinuGLTF is a header-only library, so no library build. just install header files.
|
|
#
|
|
INSTALL ( FILES
|
|
json.hpp
|
|
stb_image.h
|
|
stb_image_write.h
|
|
tiny_gltf.h
|
|
DESTINATION
|
|
include
|
|
)
|
|
|
|
INSTALL ( FILES
|
|
cmake/TinyGLTFConfig.cmake
|
|
DESTINATION
|
|
cmake
|
|
)
|