From 276afc9a9c56e0f06cb1229edade1de6b67cd7a2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Benjamin=20H=C3=B6glinger-Stelzer?= Date: Sun, 6 Feb 2022 22:09:23 +0100 Subject: [PATCH] Added DMF files --- DMF/DMF.props | 18 ++++++++++++++++++ DMF/README.md | 13 +++++++++++++ 2 files changed, 31 insertions(+) create mode 100644 DMF/DMF.props create mode 100644 DMF/README.md diff --git a/DMF/DMF.props b/DMF/DMF.props new file mode 100644 index 0000000..5bb840b --- /dev/null +++ b/DMF/DMF.props @@ -0,0 +1,18 @@ + + + + + + <_PropertySheetDisplayName>Driver Module Framework + + + + ..\..\DMF\DMF\Modules.Library;..\..\DMF\DMF\Framework;$(IntDir);%(AdditionalIncludeDirectories) + + + ..\..\DMF\$(Configuration)\$(PlatformName)\lib\DmfK\DmfK.lib;%(AdditionalDependencies); + ..\..\DMF\$(Configuration)\$(PlatformName)\lib\DmfU\DmfU.lib;%(AdditionalDependencies); + + + + \ No newline at end of file diff --git a/DMF/README.md b/DMF/README.md new file mode 100644 index 0000000..cebc4bb --- /dev/null +++ b/DMF/README.md @@ -0,0 +1,13 @@ +# Driver Module Framework (DMF) + +## Usage + +To include and link against [DMF](https://github.com/microsoft/DMF) simply clone DMF to the same project parent directory and add the following snippet to your driver project file: + +```xml + + + +``` + +Drop the provided `DMF.props` into the project directory and all include and linker settings will be available. Works for both `KMDF` and `UMDF`.