mirror of
https://github.com/amnezia-vpn/amnezia-client.git
synced 2026-06-23 02:00:20 +07:00
12 lines
308 B
CMake
12 lines
308 B
CMake
if(WIN32)
|
|
file(GLOB_RECURSE BINARIES
|
|
"${CPACK_TEMPORARY_DIRECTORY}/*.dll"
|
|
"${CPACK_TEMPORARY_DIRECTORY}/*.exe"
|
|
)
|
|
|
|
if(BINARIES)
|
|
include(${CMAKE_CURRENT_LIST_DIR}/util/signtool.cmake)
|
|
signtool_sign_files("${BINARIES}" "${SIGNTOOL_SUBJECT_NAME}")
|
|
endif()
|
|
endif()
|