11 lines
206 B
CMake
11 lines
206 B
CMake
|
project(images)
|
||
|
|
||
|
# Title Background
|
||
|
if(NOT MCPI_SERVER_MODE)
|
||
|
install(
|
||
|
FILES "background.png"
|
||
|
DESTINATION "${MCPI_INSTALL_DIR}/data/images/gui"
|
||
|
RENAME "titleBG.png"
|
||
|
)
|
||
|
endif()
|