Exclude licenses for third party programs required for development from cmake install (#9015)

This commit is contained in:
Alexey Suhov 2021-12-06 13:18:10 +03:00 committed by GitHub
parent 40691e9cc5
commit fd6035c9f1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -11,4 +11,7 @@ ie_cpack_add_component(licensing)
install(DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}
DESTINATION .
COMPONENT licensing
PATTERN CMakeLists.txt EXCLUDE)
PATTERN CMakeLists.txt EXCLUDE
PATTERN dev-third-party-programs.txt EXCLUDE
PATTERN documentation-third-party-programs.txt EXCLUDE
PATTERN third-party-programs.txt EXCLUDE)