mirror of
https://git.mirrors.martin98.com/https://github.com/syoyo/tinygltf.git
synced 2025-08-15 07:06:02 +08:00
Merge pull request #119 from nyue/master
Add CMake package for developer
This commit is contained in:
commit
a9d862aeee
@ -20,3 +20,9 @@ INSTALL ( FILES
|
|||||||
DESTINATION
|
DESTINATION
|
||||||
include
|
include
|
||||||
)
|
)
|
||||||
|
|
||||||
|
INSTALL ( FILES
|
||||||
|
cmake/glTFConfig.cmake
|
||||||
|
DESTINATION
|
||||||
|
cmake
|
||||||
|
)
|
||||||
|
17
cmake/glTFConfig.cmake
Normal file
17
cmake/glTFConfig.cmake
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
# -*- cmake -*-
|
||||||
|
# - Find glTF
|
||||||
|
|
||||||
|
# glTF_INCLUDE_DIR glTF's include directory
|
||||||
|
|
||||||
|
|
||||||
|
FIND_PACKAGE ( PackageHandleStandardArgs )
|
||||||
|
|
||||||
|
SET ( glTF_INCLUDE_DIR "${glTF_DIR}/../include" CACHE STRING "glTF include directory")
|
||||||
|
|
||||||
|
FIND_FILE ( glTF_HEADER tiny_gltf.h PATHS ${glTF_INCLUDE_DIR} )
|
||||||
|
|
||||||
|
IF (glTF_HEADER)
|
||||||
|
# MESSAGE ( STATUS "FOUND tiny_gltf.h, glTF_INCLUDE_DIR = ${glTF_INCLUDE_DIR}")
|
||||||
|
ELSE ()
|
||||||
|
MESSAGE ( FATAL_ERROR "Unable to find tiny_gltf.h, glTF_INCLUDE_DIR = ${glTF_INCLUDE_DIR}")
|
||||||
|
ENDIF ()
|
Loading…
x
Reference in New Issue
Block a user