Skip to content

Commit

Permalink
Fixups to #116 (#118)
Browse files Browse the repository at this point in the history
  • Loading branch information
basil authored Apr 26, 2024
1 parent 0b0dfc6 commit 60028fe
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 5 deletions.
4 changes: 4 additions & 0 deletions DEVELOPER.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,10 @@ There is no fully native tests.
* All tests are automatically invoked by `mvn clean verify`.
* Tests run from Maven, and the selected 32/64-bit mode depends on the Java version,
which can be passed to maven using the `JAVA_HOME` environment variable.
* Generally you need to run `mvn clean verify` and `mvn clean verify -Dnative.configuration=Debug` on 3 configurations:
* 32-bit Windows, 32-bit Java
* 64-bit Windows, 64-bit Java
* 64-bit Windows, 32-bit Java (WoW64 mode)

Note that WinP behavior may differ depending on the Windows version, permissions, run mode (desktop/service), etc.
Ideally, tests should be executed on all target platforms.
Expand Down
2 changes: 2 additions & 0 deletions build.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,8 @@ if %errorlevel% neq 0 exit /b %errorlevel%
COPY native\sendctrlc\Win32\%configuration%\sendctrlc.exe target\classes\
if %errorlevel% neq 0 exit /b %errorlevel%
COPY native\sendctrlc\x64\%configuration%\sendctrlc.x64.exe target\classes\
if %errorlevel% neq 0 exit /b %errorlevel%
goto :exit

:exit
endlocal
3 changes: 0 additions & 3 deletions install.sh

This file was deleted.

4 changes: 2 additions & 2 deletions native/signing.txt
100755 → 100644
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@ Reminder to myself.

To digitally sign the DLLs,

signtool sign /f PATH-TO-PFX /p PASSWORD /t http://timestamp.comodoca.com/authenticode Release\winp.dll
signtool sign /f PATH-TO-PFX /p PASSWORD /t http://timestamp.comodoca.com/authenticode native\Win32\Release\winp.dll

and ditto for x64\Release\winp.dll
and ditto for native\x64\Release\winp.x64.dll

0 comments on commit 60028fe

Please sign in to comment.