2021-06-17 17:32:24 -04:00
|
|
|
project(minecraft-pi)
|
|
|
|
|
|
|
|
include(FetchContent)
|
|
|
|
|
|
|
|
## Minecraft: Pi Edition
|
|
|
|
|
|
|
|
# Download
|
|
|
|
FetchContent_Declare(
|
|
|
|
minecraft-pi
|
2021-07-04 19:02:45 -04:00
|
|
|
URL "${CMAKE_CURRENT_SOURCE_DIR}/minecraft-pi-0.1.1.tar.gz"
|
2021-06-17 17:32:24 -04:00
|
|
|
)
|
2024-12-17 05:50:20 -05:00
|
|
|
FetchContent_MakeAvailable(minecraft-pi)
|
2021-06-17 17:32:24 -04:00
|
|
|
|
|
|
|
# Install
|
2022-05-29 18:44:27 -04:00
|
|
|
install(
|
|
|
|
DIRECTORY "${minecraft-pi_SOURCE_DIR}/"
|
2022-06-09 21:31:40 -04:00
|
|
|
DESTINATION "${MCPI_INSTALL_DIR}/game"
|
2022-05-29 18:44:27 -04:00
|
|
|
USE_SOURCE_PERMISSIONS
|
|
|
|
REGEX "api" EXCLUDE
|
|
|
|
)
|
2022-06-09 21:31:40 -04:00
|
|
|
install_symlink("game/minecraft-pi" "${MCPI_INSTALL_DIR}/minecraft-pi")
|