You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Note: make apparently thinks, that options specified with "/" are absolute paths and resolves them. see also https://stackoverflow.com/questions/17012419/d9024-make-unrecognized-source-file-type
Copy file name to clipboardExpand all lines: README.md
+13-3Lines changed: 13 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,13 +6,23 @@ Windows-specific implementations of [integrations-api](https://github.com/crypto
6
6
7
7
This project uses the following JVM properties:
8
8
*`cryptomator.integrationsWin.autoStartShellLinkName` - Name of the shell link, which is placed in the Windows startup folder to start application on user login
9
+
*`cryptomator.integrationsWin.windowsHelloKeyId` - Identifier for the Windows Hello keypair
10
+
*`cryptomator.integrationsWin.windowsHelloKeychainPaths` - Locations of the file-based windowsHello keychain
9
11
*`cryptomator.integrationsWin.keychainPaths` - List of file paths, which are checked for data encrypted with the Windows data protection api
10
12
11
13
## Building
12
14
13
-
This project uses JNI, hence you'll nedd Java as well as GCC build tools:
* MSVC 2022 toolset (e.g. by installing Visual Studio 2022, Workset "Desktop development with C++")
20
+
* Make (`choco install make`)
21
+
22
+
### Build
23
+
Open a terminal and run
24
+
```
25
+
mvn clean verify
26
+
```
27
+
28
+
If building the dll fails with "cl.exe cannot be found", you have to specify the developer command file directory as a property, e.g. `-DdevCommandFileDir=C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Auxiliary\Build\"`.
0 commit comments