mirror of
https://git.mirrors.martin98.com/https://github.com/syoyo/tinygltf.git
synced 2025-04-21 21:49:56 +08:00
17 lines
302 B
CMake
17 lines
302 B
CMake
cmake_minimum_required(VERSION 3.6)
|
|
project(gltfutil)
|
|
|
|
set(CMAKE_CXX_STANDARD 11)
|
|
|
|
include_directories(../../)
|
|
include_directories(../common/)
|
|
|
|
file(GLOB gltfutil_sources *.cc *.h)
|
|
add_executable(gltfutil ${gltfutil_sources} ../common/lodepng.cpp)
|
|
|
|
install ( TARGETS
|
|
gltfutil
|
|
DESTINATION
|
|
bin
|
|
)
|