Skip to content

2.1. How to add PE sieve to your Visual Studio project

hasherezade edited this page Mar 18, 2021 · 13 revisions

Once you built PE-sieve as a library, adding it to your existing Visual Studio project is easy.

  1. First you need to add paths for the headers and for the lib.
  • In Project->Properties->VC++ Directories: set two things:
    • Include Directories (to PEsieve headers)
    • Library Directories (to the directory where the pe-sieve.lib is)

added paths example

  1. Then you need to add pe-sieve.lib to the dependencies
  • In Project->Properties->Linker->Input: Additional Dependencies
    • add pe-sieve.lib

added lib example

Clone this wiki locally