aboutsummaryrefslogtreecommitdiff
path: root/sign-driver-on-windows.bat.in
blob: a6fe0757be4d85f6ea38475958367ac4c888c7eb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
@echo off

set MYDIR=%~dp0
set FILENAME_PREFIX=mingw-w64-dpp
set DRIVER={{ DRIVER_NAME }}

where signtool.exe >nul 2>&1
IF %ERRORLEVEL% NEQ 0 (
    echo ERROR: signtool.exe not found, pleae add it to your PATH
    pause
    exit /b 1
)

signtool.exe sign /v /f "%MYDIR%/%FILENAME_PREFIX%.pfx" "%MYDIR%/%DRIVER%"

pause