minecraft-pi-reborn/dependencies/minecraft-pi/CMakeLists.txt

22 lines
456 B
CMake
Raw Normal View History

2021-06-17 21:32:24 +00:00
project(minecraft-pi)
include(FetchContent)
## Minecraft: Pi Edition
# Download
FetchContent_Declare(
minecraft-pi
2021-12-01 02:25:04 +00:00
URL "${CMAKE_CURRENT_SOURCE_DIR}/minecraft-pi-0.1.0.tar.gz"
2021-06-17 21:32:24 +00:00
)
FetchContent_Populate(minecraft-pi)
# Install
install(
DIRECTORY "${minecraft-pi_SOURCE_DIR}/"
2022-06-10 01:31:40 +00:00
DESTINATION "${MCPI_INSTALL_DIR}/game"
USE_SOURCE_PERMISSIONS
REGEX "api" EXCLUDE
)
2022-06-10 01:31:40 +00:00
install_symlink("game/minecraft-pi" "${MCPI_INSTALL_DIR}/minecraft-pi")