mirror of
https://github.com/minetest/irrlicht.git
synced 2024-11-11 12:50:36 +01:00
15 lines
369 B
CMake
15 lines
369 B
CMake
@PACKAGE_INIT@
|
|
|
|
include(CMakeFindDependencyMacro)
|
|
|
|
find_package(tinygltf 2.6 REQUIRED
|
|
PATHS "${CMAKE_CURRENT_LIST_DIR}"
|
|
|
|
if(NOT TARGET IrrlichtMt::IrrlichtMt)
|
|
# private dependency only explicitly needed with static libs
|
|
if(@USE_SDL2@ AND NOT @BUILD_SHARED_LIBS@)
|
|
find_dependency(SDL2)
|
|
endif()
|
|
include("${CMAKE_CURRENT_LIST_DIR}/IrrlichtMtTargets.cmake")
|
|
endif()
|