2021-04-13 21:08:16 +02:00
|
|
|
@PACKAGE_INIT@
|
|
|
|
|
2024-01-27 22:09:34 +01:00
|
|
|
include(CMakeFindDependencyMacro)
|
|
|
|
|
2021-04-13 21:08:16 +02:00
|
|
|
if(NOT TARGET IrrlichtMt::IrrlichtMt)
|
2024-01-30 14:22:31 +01:00
|
|
|
# private dependency only explicitly needed with static libs
|
|
|
|
if(@USE_SDL2@ AND NOT @BUILD_SHARED_LIBS@)
|
2024-01-27 22:09:34 +01:00
|
|
|
find_dependency(SDL2)
|
|
|
|
endif()
|
2021-04-13 21:08:16 +02:00
|
|
|
include("${CMAKE_CURRENT_LIST_DIR}/IrrlichtMtTargets.cmake")
|
|
|
|
endif()
|