Skip to content
This repository has been archived by the owner on Nov 4, 2024. It is now read-only.

Latest commit

 

History

History
29 lines (20 loc) · 1.62 KB

installing-pmdk-on-windows.md

File metadata and controls

29 lines (20 loc) · 1.62 KB

Installing PMDK on Windows

The recommended and easiest way to install PMDK on Windows is to use a Microsoft vcpkg. Vcpkg is an open source tool and ecosystem created for libraries management. PMDK requires following:

To install the latest PMDK release and link it to your Visual Studio solution at first you need to clone and set up vcpkg on your machine as described on the vcpkg github page in Quick Start section. Run the following within the powershell:

> git clone https://github.com/Microsoft/vcpkg
> cd vcpkg
> .\bootstrap-vcpkg.bat
> .\vcpkg integrate install
> .\vcpkg install pmdk:x64-windows

{% hint style="info" %} Note: The last command can take several minutes while it is builds and installs PMDK. {% endhint %}

After successful completion of all of the above steps, libraries are ready to be used in Visual Studio. No additional configuration is required. Create a new project or open an existing project within Visual Studio (remember to use platform x64), then include the PMDK headers in your project.

Additional Resources