Some checks failed
CI / Build (AMD64) (push) Successful in 17m8s
CI / Build (ARM64) (push) Successful in 17m45s
CI / Build (ARMHF) (push) Successful in 11m24s
CI / Test (ARM64, Client) (push) Failing after 2m9s
CI / Test (AMD64, Client) (push) Failing after 2m44s
CI / Test (AMD64, Server) (push) Successful in 3m53s
CI / Test (ARM64, Server) (push) Successful in 2m17s
CI / Build Example Mods (push) Failing after 2m31s
CI / Test (ARMHF, Client) (push) Failing after 1m58s
CI / Test (ARMHF, Server) (push) Failing after 1m55s
CI / Release (push) Has been skipped
35 lines
795 B
CMake
35 lines
795 B
CMake
project(dependencies)
|
|
|
|
# stb_image
|
|
if(BUILD_ARM_COMPONENTS)
|
|
add_subdirectory(stb_image)
|
|
endif()
|
|
# Minecraft: Pi Edition
|
|
if(BUILD_ARM_COMPONENTS AND NOT MCPI_OPEN_SOURCE_ONLY)
|
|
add_subdirectory(minecraft-pi)
|
|
endif()
|
|
# Zenity (Minimal Build)
|
|
if(BUILD_NATIVE_COMPONENTS)
|
|
add_subdirectory(zenity)
|
|
endif()
|
|
# LIEF
|
|
if(BUILD_NATIVE_COMPONENTS OR BUILD_MEDIA_LAYER_CORE)
|
|
add_subdirectory(LIEF)
|
|
endif()
|
|
# Extra Runtime
|
|
add_subdirectory(runtime)
|
|
# GLFW
|
|
if(BUILD_MEDIA_LAYER_CORE)
|
|
add_subdirectory(glfw)
|
|
endif()
|
|
# GLES Compatibility Layer
|
|
if(BUILD_MEDIA_LAYER_CORE AND MCPI_USE_GLES1_COMPATIBILITY_LAYER)
|
|
add_subdirectory(gles-compatibility-layer)
|
|
endif()
|
|
# UTF8-CPP
|
|
add_subdirectory(utf8cpp)
|
|
# Symbol Prcoessor
|
|
if(BUILD_ARM_COMPONENTS)
|
|
add_subdirectory(symbol-processor)
|
|
endif()
|