mirror of
https://github.com/amnezia-vpn/amnezia-client.git
synced 2026-06-20 02:00:55 +07:00
31 lines
1.0 KiB
CMake
31 lines
1.0 KiB
CMake
|
|
if(NOT DEFINED SIGNTOOL_SUBJECT_NAME)
|
||
|
|
set(SIGNTOOL_SUBJECT_NAME "$ENV{SIGNTOOL_SUBJECT_NAME}")
|
||
|
|
endif()
|
||
|
|
if(NOT DEFINED NOTARYTOOL_EMAIL)
|
||
|
|
set(NOTARYTOOL_EMAIL "$ENV{NOTARYTOOL_EMAIL}")
|
||
|
|
endif()
|
||
|
|
if(NOT DEFINED NOTARYTOOL_TEAM_ID)
|
||
|
|
set(NOTARYTOOL_TEAM_ID "$ENV{NOTARYTOOL_TEAM_ID}")
|
||
|
|
endif()
|
||
|
|
if(NOT DEFINED NOTARYTOOL_PASSWORD)
|
||
|
|
set(NOTARYTOOL_PASSWORD "$ENV{NOTARYTOOL_PASSWORD}")
|
||
|
|
endif()
|
||
|
|
|
||
|
|
if(WIN32)
|
||
|
|
if (SIGNTOOL_SUBJECT_NAME)
|
||
|
|
include(${CMAKE_CURRENT_LIST_DIR}/util/signtool.cmake)
|
||
|
|
foreach(PACKAGE_FILE IN LISTS CPACK_PACKAGE_FILES)
|
||
|
|
signtool_sign_files("${PACKAGE_FILE}" "${SIGNTOOL_SUBJECT_NAME}")
|
||
|
|
endforeach()
|
||
|
|
endif()
|
||
|
|
endif()
|
||
|
|
|
||
|
|
if(APPLE)
|
||
|
|
if(NOTARYTOOL_EMAIL AND NOTARYTOOL_TEAM_ID AND NOTARYTOOL_PASSWORD)
|
||
|
|
include(${CMAKE_CURRENT_LIST_DIR}/util/notarytool.cmake)
|
||
|
|
foreach(file IN LISTS CPACK_PACKAGE_FILES)
|
||
|
|
notarize_and_staple_file("${file}" "${NOTARYTOOL_EMAIL}" "${NOTARYTOOL_TEAM_ID}" "${NOTARYTOOL_PASSWORD}")
|
||
|
|
endforeach()
|
||
|
|
endif()
|
||
|
|
endif()
|