(Go: >> BACK << -|- >> HOME <<)

Skip to content

fburgerdev/serialize

Repository files navigation

serialize

C++ library for ...

describe your project ...

Usage

Use Case 1

    #include<iostream>

    int main() {
        std::cout << "Hello World!" << std::endl;
        return EXIT_SUCCESS;
    }

Include this Library

In your c++ project

  • add include/serialize to your include directories
  • add lib/[config] to your library directories (depending on your configuration)
  • link the library libserialize.a (for linux) and serialize.lib (for windows)

Build (Optional)

Using Linux (Debian)

Locate the build folder, then execute the following command in the console:

make config=[config]

If you have not installed make:

sudo apt-get install make -y

Using Windows

Open the build/serialize.sln solution with Visual Studio.

After selecting your desired configuration, click on Build > Build Solution.

Note: Make sure you have the Desktop developement with C++ workload installed.