alantsui5 / CPP-template

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Install Conan , Visual Studio/mingw And Cmake First to use this template

Add src folder and resource folder function

Poco MD5 Example

Example of and MD5 calculation app using POCO C++ libraries installed with Conan C/C++ package manager.

Mostly used to run the conan.io getting started: https://docs.conan.io/en/latest/getting_started.html

Compiling steps

  1. Create a build directory:

    $ mkdir build && cd build
    
  2. Install dependencies (Poco -> OpenSSL -> zlib):

    $ conan install ..
    
  3. Configure the CMake project (Using MSVC 16 in this example):

    $ cmake .. -G "Visual Studio 16 2019"
    
  4. Build it:

    $ cmake --build . --config Release
    
  5. Run the application:

    $ .\bin\md5.exe
    c3fcd3d76192e4007dfb496cca67e13b
    

About


Languages

Language:CMake 45.1%Language:Batchfile 24.5%Language:C++ 20.4%Language:Shell 10.0%