Skip to content

Commit

Permalink
Correct signing script to use GLOB
Browse files Browse the repository at this point in the history
  • Loading branch information
byrnHDF committed Sep 4, 2024
1 parent c3ef1b6 commit 523e3c3
Show file tree
Hide file tree
Showing 16 changed files with 177 additions and 124 deletions.
25 changes: 15 additions & 10 deletions BLOSC/config/cmake/SignPackageFiles.cmake
Original file line number Diff line number Diff line change
@@ -1,26 +1,31 @@
# This script signs the targets for the package
message(STATUS "Signing script for ${CPACK_EXPORT_LIBRARIES}")
foreach (target "${CPACK_EXPORT_LIBRARIES}")
message(STATUS "Signing script for ${CPACK_EXPORT_LIBRARIES} in ${CPACK_TEMPORARY_INSTALL_DIRECTORY}/${CPACK_PACKAGE_INSTALL_DIRECTORY}")
# RPM needs ALL_COMPONENTS_IN_ONE added to path between ${CPACK_TEMPORARY_INSTALL_DIRECTORY} and ${CPACK_PACKAGE_INSTALL_DIRECTORY}
file(GLOB target_list LIST_DIRECTORIES false "${CPACK_TEMPORARY_INSTALL_DIRECTORY}/${CPACK_PACKAGE_INSTALL_DIRECTORY}/lib/plugin/*.*")
foreach (targetfile IN LISTS target_list)
if (WIN32)
# Sign the targets
execute_process(COMMAND $ENV{SIGNTOOLDIR}/signtool
sign /v /debug /fd SHA256 /tr http://timestamp.acs.microsoft.com /td SHA256
/dlib "Microsoft.Trusted.Signing.Client/bin/x64/Azure.CodeSigning.Dlib.dll" /dmdf ${CMAKE_CURRENT_SOURCE_DIR}/credentials.json
$<TARGET_FILE:${target}>
WORKING_DIRECTORY ${CPACK_TEMPORARY_INSTALL_DIRECTORY}/ALL_COMPONENTS_IN_ONE/${CPACK_PACKAGE_INSTALL_DIRECTORY}/lib/plugin
${targetfile}
)
execute_process(
COMMAND ${CMAKE_COMMAND} -E echo "Signing the target ${targetfile}"
)
message(STATUS "Signing the target ${target}")
elseif (APPLE)
# Sign the targets
execute_process(COMMAND codesign
--force --timestamp --options runtime --entitlements ${CMAKE_CURRENT_SOURCE_DIR}/config/cmake/distribution.entitlements
--verbose=4 --strict --sign "$ENV{SIGNER}"
$<TARGET_FILE:${target}>
WORKING_DIRECTORY ${CPACK_TEMPORARY_INSTALL_DIRECTORY}/ALL_COMPONENTS_IN_ONE/${CPACK_PACKAGE_INSTALL_DIRECTORY}/lib/plugin
${targetfile}
)
execute_process(
COMMAND ${CMAKE_COMMAND} -E echo "Signing the target ${targetfile}"
)
message(STATUS "Signing the target ${target}")
else ()
set (target_path ${CPACK_TEMPORARY_INSTALL_DIRECTORY}/ALL_COMPONENTS_IN_ONE/${CPACK_PACKAGE_INSTALL_DIRECTORY}/lib/plugin)
message(STATUS "Signing the target ${target} using ${target_path}")
execute_process(
COMMAND ${CMAKE_COMMAND} -E echo "Signing the target ${targetfile}"
)
endif ()
endforeach ()
25 changes: 15 additions & 10 deletions BLOSC2/config/cmake/SignPackageFiles.cmake
Original file line number Diff line number Diff line change
@@ -1,26 +1,31 @@
# This script signs the targets for the package
message(STATUS "Signing script for ${CPACK_EXPORT_LIBRARIES}")
foreach (target "${CPACK_EXPORT_LIBRARIES}")
message(STATUS "Signing script for ${CPACK_EXPORT_LIBRARIES} in ${CPACK_TEMPORARY_INSTALL_DIRECTORY}/${CPACK_PACKAGE_INSTALL_DIRECTORY}")
# RPM needs ALL_COMPONENTS_IN_ONE added to path between ${CPACK_TEMPORARY_INSTALL_DIRECTORY} and ${CPACK_PACKAGE_INSTALL_DIRECTORY}
file(GLOB target_list LIST_DIRECTORIES false "${CPACK_TEMPORARY_INSTALL_DIRECTORY}/${CPACK_PACKAGE_INSTALL_DIRECTORY}/lib/plugin/*.*")
foreach (targetfile IN LISTS target_list)
if (WIN32)
# Sign the targets
execute_process(COMMAND $ENV{SIGNTOOLDIR}/signtool
sign /v /debug /fd SHA256 /tr http://timestamp.acs.microsoft.com /td SHA256
/dlib "Microsoft.Trusted.Signing.Client/bin/x64/Azure.CodeSigning.Dlib.dll" /dmdf ${CMAKE_CURRENT_SOURCE_DIR}/credentials.json
$<TARGET_FILE:${target}>
WORKING_DIRECTORY ${CPACK_TEMPORARY_INSTALL_DIRECTORY}/ALL_COMPONENTS_IN_ONE/${CPACK_PACKAGE_INSTALL_DIRECTORY}/lib/plugin
${targetfile}
)
execute_process(
COMMAND ${CMAKE_COMMAND} -E echo "Signing the target ${targetfile}"
)
message(STATUS "Signing the target ${target}")
elseif (APPLE)
# Sign the targets
execute_process(COMMAND codesign
--force --timestamp --options runtime --entitlements ${CMAKE_CURRENT_SOURCE_DIR}/config/cmake/distribution.entitlements
--verbose=4 --strict --sign "$ENV{SIGNER}"
$<TARGET_FILE:${target}>
WORKING_DIRECTORY ${CPACK_TEMPORARY_INSTALL_DIRECTORY}/ALL_COMPONENTS_IN_ONE/${CPACK_PACKAGE_INSTALL_DIRECTORY}/lib/plugin
${targetfile}
)
execute_process(
COMMAND ${CMAKE_COMMAND} -E echo "Signing the target ${targetfile}"
)
message(STATUS "Signing the target ${target}")
else ()
set (target_path ${CPACK_TEMPORARY_INSTALL_DIRECTORY}/ALL_COMPONENTS_IN_ONE/${CPACK_PACKAGE_INSTALL_DIRECTORY}/lib/plugin)
message(STATUS "Signing the target ${target} using ${target_path}")
execute_process(
COMMAND ${CMAKE_COMMAND} -E echo "Signing the target ${targetfile}"
)
endif ()
endforeach ()
1 change: 0 additions & 1 deletion BSHUF/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,6 @@ message (STATUS "H5BSHUF link libs: ${H5PL_LINK_LIBS}")
configure_file (${H5BSHUF_RESOURCES_DIR}/config.h.in ${H5BSHUF_BINARY_DIR}/bshuf_config.h @ONLY)

include (ExternalProject)
option (H5PL_ALLOW_EXTERNAL_SUPPORT "Allow External Library Building (NO GIT TGZ)" "NO")
set (H5PL_ALLOW_EXTERNAL_SUPPORT "NO" CACHE STRING "Allow External Library Building (NO GIT TGZ)")
set_property (CACHE H5PL_ALLOW_EXTERNAL_SUPPORT PROPERTY STRINGS NO GIT TGZ)

Expand Down
25 changes: 15 additions & 10 deletions BSHUF/config/cmake/SignPackageFiles.cmake
Original file line number Diff line number Diff line change
@@ -1,26 +1,31 @@
# This script signs the targets for the package
message(STATUS "Signing script for ${CPACK_EXPORT_LIBRARIES}")
foreach (target "${CPACK_EXPORT_LIBRARIES}")
message(STATUS "Signing script for ${CPACK_EXPORT_LIBRARIES} in ${CPACK_TEMPORARY_INSTALL_DIRECTORY}/${CPACK_PACKAGE_INSTALL_DIRECTORY}")
# RPM needs ALL_COMPONENTS_IN_ONE added to path between ${CPACK_TEMPORARY_INSTALL_DIRECTORY} and ${CPACK_PACKAGE_INSTALL_DIRECTORY}
file(GLOB target_list LIST_DIRECTORIES false "${CPACK_TEMPORARY_INSTALL_DIRECTORY}/${CPACK_PACKAGE_INSTALL_DIRECTORY}/lib/plugin/*.*")
foreach (targetfile IN LISTS target_list)
if (WIN32)
# Sign the targets
execute_process(COMMAND $ENV{SIGNTOOLDIR}/signtool
sign /v /debug /fd SHA256 /tr http://timestamp.acs.microsoft.com /td SHA256
/dlib "Microsoft.Trusted.Signing.Client/bin/x64/Azure.CodeSigning.Dlib.dll" /dmdf ${CMAKE_CURRENT_SOURCE_DIR}/credentials.json
$<TARGET_FILE:${target}>
WORKING_DIRECTORY ${CPACK_TEMPORARY_INSTALL_DIRECTORY}/ALL_COMPONENTS_IN_ONE/${CPACK_PACKAGE_INSTALL_DIRECTORY}/lib/plugin
${targetfile}
)
execute_process(
COMMAND ${CMAKE_COMMAND} -E echo "Signing the target ${targetfile}"
)
message(STATUS "Signing the target ${target}")
elseif (APPLE)
# Sign the targets
execute_process(COMMAND codesign
--force --timestamp --options runtime --entitlements ${CMAKE_CURRENT_SOURCE_DIR}/config/cmake/distribution.entitlements
--verbose=4 --strict --sign "$ENV{SIGNER}"
$<TARGET_FILE:${target}>
WORKING_DIRECTORY ${CPACK_TEMPORARY_INSTALL_DIRECTORY}/ALL_COMPONENTS_IN_ONE/${CPACK_PACKAGE_INSTALL_DIRECTORY}/lib/plugin
${targetfile}
)
execute_process(
COMMAND ${CMAKE_COMMAND} -E echo "Signing the target ${targetfile}"
)
message(STATUS "Signing the target ${target}")
else ()
set (target_path ${CPACK_TEMPORARY_INSTALL_DIRECTORY}/ALL_COMPONENTS_IN_ONE/${CPACK_PACKAGE_INSTALL_DIRECTORY}/lib/plugin)
message(STATUS "Signing the target ${target} using ${target_path}")
execute_process(
COMMAND ${CMAKE_COMMAND} -E echo "Signing the target ${targetfile}"
)
endif ()
endforeach ()
1 change: 1 addition & 0 deletions BZIP2/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,7 @@ configure_file (${H5BZ2_RESOURCES_DIR}/config.h.in ${H5BZ2_BINARY_DIR}/bzip_conf
include (ExternalProject)
set (H5PL_ALLOW_EXTERNAL_SUPPORT "NO" CACHE STRING "Allow External Library Building (NO GIT TGZ)")
set_property (CACHE H5PL_ALLOW_EXTERNAL_SUPPORT PROPERTY STRINGS NO GIT TGZ)

if (H5PL_ALLOW_EXTERNAL_SUPPORT MATCHES "GIT" OR H5PL_ALLOW_EXTERNAL_SUPPORT MATCHES "TGZ")
option (BZ2_USE_EXTERNAL "Use External Library Building for BZ2" 1)
if (H5PL_ALLOW_EXTERNAL_SUPPORT MATCHES "GIT")
Expand Down
25 changes: 15 additions & 10 deletions BZIP2/config/cmake/SignPackageFiles.cmake
Original file line number Diff line number Diff line change
@@ -1,26 +1,31 @@
# This script signs the targets for the package
message(STATUS "Signing script for ${CPACK_EXPORT_LIBRARIES}")
foreach (target "${CPACK_EXPORT_LIBRARIES}")
message(STATUS "Signing script for ${CPACK_EXPORT_LIBRARIES} in ${CPACK_TEMPORARY_INSTALL_DIRECTORY}/${CPACK_PACKAGE_INSTALL_DIRECTORY}")
# RPM needs ALL_COMPONENTS_IN_ONE added to path between ${CPACK_TEMPORARY_INSTALL_DIRECTORY} and ${CPACK_PACKAGE_INSTALL_DIRECTORY}
file(GLOB target_list LIST_DIRECTORIES false "${CPACK_TEMPORARY_INSTALL_DIRECTORY}/${CPACK_PACKAGE_INSTALL_DIRECTORY}/lib/plugin/*.*")
foreach (targetfile IN LISTS target_list)
if (WIN32)
# Sign the targets
execute_process(COMMAND $ENV{SIGNTOOLDIR}/signtool
sign /v /debug /fd SHA256 /tr http://timestamp.acs.microsoft.com /td SHA256
/dlib "Microsoft.Trusted.Signing.Client/bin/x64/Azure.CodeSigning.Dlib.dll" /dmdf ${CMAKE_CURRENT_SOURCE_DIR}/credentials.json
$<TARGET_FILE:${target}>
WORKING_DIRECTORY ${CPACK_TEMPORARY_INSTALL_DIRECTORY}/ALL_COMPONENTS_IN_ONE/${CPACK_PACKAGE_INSTALL_DIRECTORY}/lib/plugin
${targetfile}
)
execute_process(
COMMAND ${CMAKE_COMMAND} -E echo "Signing the target ${targetfile}"
)
message(STATUS "Signing the target ${target}")
elseif (APPLE)
# Sign the targets
execute_process(COMMAND codesign
--force --timestamp --options runtime --entitlements ${CMAKE_CURRENT_SOURCE_DIR}/config/cmake/distribution.entitlements
--verbose=4 --strict --sign "$ENV{SIGNER}"
$<TARGET_FILE:${target}>
WORKING_DIRECTORY ${CPACK_TEMPORARY_INSTALL_DIRECTORY}/ALL_COMPONENTS_IN_ONE/${CPACK_PACKAGE_INSTALL_DIRECTORY}/lib/plugin
${targetfile}
)
execute_process(
COMMAND ${CMAKE_COMMAND} -E echo "Signing the target ${targetfile}"
)
message(STATUS "Signing the target ${target}")
else ()
set (target_path ${CPACK_TEMPORARY_INSTALL_DIRECTORY}/ALL_COMPONENTS_IN_ONE/${CPACK_PACKAGE_INSTALL_DIRECTORY}/lib/plugin)
message(STATUS "Signing the target ${target} using ${target_path}")
execute_process(
COMMAND ${CMAKE_COMMAND} -E echo "Signing the target ${targetfile}"
)
endif ()
endforeach ()
2 changes: 1 addition & 1 deletion BZIP2/config/cmake/binex/example/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ foreach (example ${dyn_examples})
add_executable (${example} ${PROJECT_SOURCE_DIR}/${example}.c)
target_include_directories(${example} PRIVATE ${H5PL_HDF5_INCLUDE_DIRS})
TARGET_C_PROPERTIES (${example} ${LIB_TYPE})
target_link_libraries (${example} PRIVATE ${H5PL_LINK_LIBS})
target_link_libraries (${example} PRIVATE ${H5PL_HDF5_LINK_LIBS})
if (NOT WIN32)
target_link_libraries (${example} PRIVATE dl)
endif ()
Expand Down
1 change: 1 addition & 0 deletions JPEG/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,7 @@ message (STATUS "H5JPEG link libs: ${H5PL_LINK_LIBS}")
include (ExternalProject)
set (H5PL_ALLOW_EXTERNAL_SUPPORT "NO" CACHE STRING "Allow External Library Building (NO GIT TGZ)")
set_property (CACHE H5PL_ALLOW_EXTERNAL_SUPPORT PROPERTY STRINGS NO GIT TGZ)

if (H5PL_ALLOW_EXTERNAL_SUPPORT MATCHES "GIT" OR H5PL_ALLOW_EXTERNAL_SUPPORT MATCHES "TGZ")
option (JPEG_USE_EXTERNAL "Use External Library Building for JPEG" 1)
if (H5PL_ALLOW_EXTERNAL_SUPPORT MATCHES "GIT")
Expand Down
25 changes: 15 additions & 10 deletions JPEG/config/cmake/SignPackageFiles.cmake
Original file line number Diff line number Diff line change
@@ -1,26 +1,31 @@
# This script signs the targets for the package
message(STATUS "Signing script for ${CPACK_EXPORT_LIBRARIES}")
foreach (target "${CPACK_EXPORT_LIBRARIES}")
message(STATUS "Signing script for ${CPACK_EXPORT_LIBRARIES} in ${CPACK_TEMPORARY_INSTALL_DIRECTORY}/${CPACK_PACKAGE_INSTALL_DIRECTORY}")
# RPM needs ALL_COMPONENTS_IN_ONE added to path between ${CPACK_TEMPORARY_INSTALL_DIRECTORY} and ${CPACK_PACKAGE_INSTALL_DIRECTORY}
file(GLOB target_list LIST_DIRECTORIES false "${CPACK_TEMPORARY_INSTALL_DIRECTORY}/${CPACK_PACKAGE_INSTALL_DIRECTORY}/lib/plugin/*.*")
foreach (targetfile IN LISTS target_list)
if (WIN32)
# Sign the targets
execute_process(COMMAND $ENV{SIGNTOOLDIR}/signtool
sign /v /debug /fd SHA256 /tr http://timestamp.acs.microsoft.com /td SHA256
/dlib "Microsoft.Trusted.Signing.Client/bin/x64/Azure.CodeSigning.Dlib.dll" /dmdf ${CMAKE_CURRENT_SOURCE_DIR}/credentials.json
$<TARGET_FILE:${target}>
WORKING_DIRECTORY ${CPACK_TEMPORARY_INSTALL_DIRECTORY}/ALL_COMPONENTS_IN_ONE/${CPACK_PACKAGE_INSTALL_DIRECTORY}/lib/plugin
${targetfile}
)
execute_process(
COMMAND ${CMAKE_COMMAND} -E echo "Signing the target ${targetfile}"
)
message(STATUS "Signing the target ${target}")
elseif (APPLE)
# Sign the targets
execute_process(COMMAND codesign
--force --timestamp --options runtime --entitlements ${CMAKE_CURRENT_SOURCE_DIR}/config/cmake/distribution.entitlements
--verbose=4 --strict --sign "$ENV{SIGNER}"
$<TARGET_FILE:${target}>
WORKING_DIRECTORY ${CPACK_TEMPORARY_INSTALL_DIRECTORY}/ALL_COMPONENTS_IN_ONE/${CPACK_PACKAGE_INSTALL_DIRECTORY}/lib/plugin
${targetfile}
)
execute_process(
COMMAND ${CMAKE_COMMAND} -E echo "Signing the target ${targetfile}"
)
message(STATUS "Signing the target ${target}")
else ()
set (target_path ${CPACK_TEMPORARY_INSTALL_DIRECTORY}/ALL_COMPONENTS_IN_ONE/${CPACK_PACKAGE_INSTALL_DIRECTORY}/lib/plugin)
message(STATUS "Signing the target ${target} using ${target_path}")
execute_process(
COMMAND ${CMAKE_COMMAND} -E echo "Signing the target ${targetfile}"
)
endif ()
endforeach ()
25 changes: 15 additions & 10 deletions LZ4/config/cmake/SignPackageFiles.cmake
Original file line number Diff line number Diff line change
@@ -1,26 +1,31 @@
# This script signs the targets for the package
message(STATUS "Signing script for ${CPACK_EXPORT_LIBRARIES}")
foreach (target "${CPACK_EXPORT_LIBRARIES}")
message(STATUS "Signing script for ${CPACK_EXPORT_LIBRARIES} in ${CPACK_TEMPORARY_INSTALL_DIRECTORY}/${CPACK_PACKAGE_INSTALL_DIRECTORY}")
# RPM needs ALL_COMPONENTS_IN_ONE added to path between ${CPACK_TEMPORARY_INSTALL_DIRECTORY} and ${CPACK_PACKAGE_INSTALL_DIRECTORY}
file(GLOB target_list LIST_DIRECTORIES false "${CPACK_TEMPORARY_INSTALL_DIRECTORY}/${CPACK_PACKAGE_INSTALL_DIRECTORY}/lib/plugin/*.*")
foreach (targetfile IN LISTS target_list)
if (WIN32)
# Sign the targets
execute_process(COMMAND $ENV{SIGNTOOLDIR}/signtool
sign /v /debug /fd SHA256 /tr http://timestamp.acs.microsoft.com /td SHA256
/dlib "Microsoft.Trusted.Signing.Client/bin/x64/Azure.CodeSigning.Dlib.dll" /dmdf ${CMAKE_CURRENT_SOURCE_DIR}/credentials.json
$<TARGET_FILE:${target}>
WORKING_DIRECTORY ${CPACK_TEMPORARY_INSTALL_DIRECTORY}/ALL_COMPONENTS_IN_ONE/${CPACK_PACKAGE_INSTALL_DIRECTORY}/lib/plugin
${targetfile}
)
execute_process(
COMMAND ${CMAKE_COMMAND} -E echo "Signing the target ${targetfile}"
)
message(STATUS "Signing the target ${target}")
elseif (APPLE)
# Sign the targets
execute_process(COMMAND codesign
--force --timestamp --options runtime --entitlements ${CMAKE_CURRENT_SOURCE_DIR}/config/cmake/distribution.entitlements
--verbose=4 --strict --sign "$ENV{SIGNER}"
$<TARGET_FILE:${target}>
WORKING_DIRECTORY ${CPACK_TEMPORARY_INSTALL_DIRECTORY}/ALL_COMPONENTS_IN_ONE/${CPACK_PACKAGE_INSTALL_DIRECTORY}/lib/plugin
${targetfile}
)
execute_process(
COMMAND ${CMAKE_COMMAND} -E echo "Signing the target ${targetfile}"
)
message(STATUS "Signing the target ${target}")
else ()
set (target_path ${CPACK_TEMPORARY_INSTALL_DIRECTORY}/ALL_COMPONENTS_IN_ONE/${CPACK_PACKAGE_INSTALL_DIRECTORY}/lib/plugin)
message(STATUS "Signing the target ${target} using ${target_path}")
execute_process(
COMMAND ${CMAKE_COMMAND} -E echo "Signing the target ${targetfile}"
)
endif ()
endforeach ()
25 changes: 15 additions & 10 deletions LZF/config/cmake/SignPackageFiles.cmake
Original file line number Diff line number Diff line change
@@ -1,26 +1,31 @@
# This script signs the targets for the package
message(STATUS "Signing script for ${CPACK_EXPORT_LIBRARIES}")
foreach (target "${CPACK_EXPORT_LIBRARIES}")
message(STATUS "Signing script for ${CPACK_EXPORT_LIBRARIES} in ${CPACK_TEMPORARY_INSTALL_DIRECTORY}/${CPACK_PACKAGE_INSTALL_DIRECTORY}")
# RPM needs ALL_COMPONENTS_IN_ONE added to path between ${CPACK_TEMPORARY_INSTALL_DIRECTORY} and ${CPACK_PACKAGE_INSTALL_DIRECTORY}
file(GLOB target_list LIST_DIRECTORIES false "${CPACK_TEMPORARY_INSTALL_DIRECTORY}/${CPACK_PACKAGE_INSTALL_DIRECTORY}/lib/plugin/*.*")
foreach (targetfile IN LISTS target_list)
if (WIN32)
# Sign the targets
execute_process(COMMAND $ENV{SIGNTOOLDIR}/signtool
sign /v /debug /fd SHA256 /tr http://timestamp.acs.microsoft.com /td SHA256
/dlib "Microsoft.Trusted.Signing.Client/bin/x64/Azure.CodeSigning.Dlib.dll" /dmdf ${CMAKE_CURRENT_SOURCE_DIR}/credentials.json
$<TARGET_FILE:${target}>
WORKING_DIRECTORY ${CPACK_TEMPORARY_INSTALL_DIRECTORY}/ALL_COMPONENTS_IN_ONE/${CPACK_PACKAGE_INSTALL_DIRECTORY}/lib/plugin
${targetfile}
)
execute_process(
COMMAND ${CMAKE_COMMAND} -E echo "Signing the target ${targetfile}"
)
message(STATUS "Signing the target ${target}")
elseif (APPLE)
# Sign the targets
execute_process(COMMAND codesign
--force --timestamp --options runtime --entitlements ${CMAKE_CURRENT_SOURCE_DIR}/config/cmake/distribution.entitlements
--verbose=4 --strict --sign "$ENV{SIGNER}"
$<TARGET_FILE:${target}>
WORKING_DIRECTORY ${CPACK_TEMPORARY_INSTALL_DIRECTORY}/ALL_COMPONENTS_IN_ONE/${CPACK_PACKAGE_INSTALL_DIRECTORY}/lib/plugin
${targetfile}
)
execute_process(
COMMAND ${CMAKE_COMMAND} -E echo "Signing the target ${targetfile}"
)
message(STATUS "Signing the target ${target}")
else ()
set (target_path ${CPACK_TEMPORARY_INSTALL_DIRECTORY}/ALL_COMPONENTS_IN_ONE/${CPACK_PACKAGE_INSTALL_DIRECTORY}/lib/plugin)
message(STATUS "Signing the target ${target} using ${target_path}")
execute_process(
COMMAND ${CMAKE_COMMAND} -E echo "Signing the target ${targetfile}"
)
endif ()
endforeach ()
Loading

0 comments on commit 523e3c3

Please sign in to comment.