You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
644 B
CMake
29 lines
644 B
CMake
#
|
|
# Copyright (c) Contributors to the Open 3D Engine Project.
|
|
# For complete copyright and license terms please see the LICENSE at the root of this distribution.
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0 OR MIT
|
|
#
|
|
#
|
|
|
|
if(NOT PAL_TRAIT_BUILD_HOST_TOOLS)
|
|
return()
|
|
endif()
|
|
|
|
# common files to all platforms
|
|
ly_install_files(
|
|
FILES
|
|
get_python.cmake
|
|
readme.md
|
|
requirements.txt
|
|
DESTINATION python
|
|
)
|
|
|
|
# platform specific files (they are PROGRAMS)
|
|
include(Platform/${PAL_PLATFORM_NAME}/install_files_${PAL_PLATFORM_NAME_LOWERCASE}.cmake)
|
|
ly_install_files(
|
|
FILES ${install_files}
|
|
PROGRAMS
|
|
DESTINATION python
|
|
)
|