diff --git a/README.md b/README.md index bc5279b..20f0d76 100644 --- a/README.md +++ b/README.md @@ -32,6 +32,8 @@ Built for and tested on **Windows 10 version 1507 (or newer) x64/ARM64**. 32-Bit ## How to use - Add the `include` directory to your project's headers search path. + - To make your life easier I recommend setting an environment variable named `DOMITO_INC_PATH` to `...\Domito\include` absolute path and... + - ...in your project add `$(DOMITO_INC_PATH);` to "Additional Include Directories". - Add includes (preferably in the provided order): ```c #include @@ -41,6 +43,8 @@ Built for and tested on **Windows 10 version 1507 (or newer) x64/ARM64**. 32-Bit ``` - Call `DomitoInit()` in your `DriverEntry` once to bootstrap internals. - Link against the resulting `Domito.lib` file for your desired architecture. + - To make your life easier I recommend setting an environment variable named `DOMITO_LIB_PATH` to `...\Domito\lib` absolute path and... + - ...in your project add `$(DOMITO_LIB_PATH)\$(DDKPlatform)\$(Configuration)\Domito.lib;$(DOMITO_LIB_PATH)\$(DDKPlatform)\ci.lib;` to "Additional Dependencies". - Link against the provided `ci.lib` for the Code Integrity convenience functions. - Link against `cng.lib` for the CNG BCrypt APIs. - Done!