Minecraft: Pi Edition Modding Project
https://discord.com/invite/aDqejQGMMy
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
551 B
22 lines
551 B
project(dependencies) |
|
|
|
# ZLib (Needed By libpng) |
|
add_subdirectory(zlib) |
|
# LibPNG |
|
add_subdirectory(libpng) |
|
# Minecraft: Pi Edition |
|
if(BUILD_ARM_COMPONENTS AND NOT MCPI_OPEN_SOURCE_ONLY) |
|
add_subdirectory(minecraft-pi) |
|
endif() |
|
# GLFW |
|
if(BUILD_NATIVE_COMPONENTS AND NOT MCPI_HEADLESS_MODE) |
|
add_subdirectory(glfw) |
|
endif() |
|
# Zenity (Minimal Build) |
|
if(BUILD_NATIVE_COMPONENTS AND NOT MCPI_HEADLESS_MODE) |
|
add_subdirectory(zenity) |
|
endif() |
|
# Sysroot |
|
if(BUILD_ARM_COMPONENTS AND MCPI_BUNDLE_ARMHF_SYSROOT) |
|
add_subdirectory(armhf-sysroot) |
|
endif()
|
|
|