19 lines
353 B
CMake
Raw Normal View History

2021-06-17 17:32:24 -04:00
project(dependencies)
# ZLib
2022-03-09 21:23:41 -05:00
if(BUILD_ARM_COMPONENTS)
add_subdirectory(zlib)
endif()
2021-06-17 17:32:24 -04:00
# LibPNG
2022-03-09 21:23:41 -05:00
if(BUILD_ARM_COMPONENTS)
add_subdirectory(libpng)
endif()
# GLFW
if(BUILD_NATIVE_COMPONENTS)
add_subdirectory(glfw)
endif()
2021-06-17 17:32:24 -04:00
# Minecraft: Pi Edition
2022-03-09 21:23:41 -05:00
if(BUILD_ARM_COMPONENTS AND NOT MCPI_OPEN_SOURCE_ONLY)
2021-12-19 16:09:16 -05:00
add_subdirectory(minecraft-pi)
endif()