include notice

This commit is contained in:
Henry 2022-11-25 15:14:28 +08:00
parent 7a0c519cb2
commit 156f9a4c56
2 changed files with 8 additions and 1 deletions

View File

@ -269,6 +269,12 @@ install(
COMPONENT mindspore COMPONENT mindspore
) )
file(GLOB NOTICE ${CMAKE_SOURCE_DIR}/Third_Party_Open_Source_Software_Notice)
install(
FILES ${NOTICE}
DESTINATION ${INSTALL_PY_DIR}
COMPONENT mindspore
)
install( install(
DIRECTORY DIRECTORY
${CMAKE_SOURCE_DIR}/mindspore/python/mindspore/nn ${CMAKE_SOURCE_DIR}/mindspore/python/mindspore/nn

View File

@ -123,7 +123,8 @@ package_data = {
'include/*', 'include/*',
'include/*/*', 'include/*/*',
'include/*/*/*', 'include/*/*/*',
'include/*/*/*/*' 'include/*/*/*/*',
'Third_Party_Open_Source_Software_Notice'
] ]
} }