2024-12-31 14:20:56 +00:00
|
|
|
@PACKAGE_INIT@
|
|
|
|
|
|
|
|
include("${CMAKE_CURRENT_LIST_DIR}/TessesCrossLangTargets.cmake")
|
|
|
|
|
|
|
|
check_required_components(TessesCrossLang)
|
2025-01-03 11:54:27 +00:00
|
|
|
find_package(TessesFramework REQUIRED)
|
|
|
|
if(@CROSSLANG_ENABLE_SDL2@)
|
|
|
|
find_package(SDL2 REQUIRED)
|
|
|
|
find_package(SDL2_ttf REQUIRED)
|
|
|
|
if("${CMAKE_SYSTEM_NAME}" STREQUAL "NintendoWii" OR "${CMAKE_SYSTEM_NAME}" STREQUAL "NintendoGameCube")
|
|
|
|
|
|
|
|
else()
|
|
|
|
find_package(SDL2_image REQUIRED)
|
|
|
|
endif()
|
|
|
|
endif()
|