Skip to content

A lightweight (de)serialiser lib for easily serialising primitive types, a few STL containers, and custom objects.

Notifications You must be signed in to change notification settings

mttjcksn/serialiser

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

serialiser

A (de)serialiser lib for easily serialising primitive types, vectors, maps, unordered_maps, and custom objects.

Build example

cmake --preset clang-debug
cd build/clang-debug
cmake --build .

Runing tests

ctest (From inside build folder)

Using in a cmake project

include(FetchContent)

FetchContent_Declare(
  serialiser 
  GIT_REPOSITORY https://www.github.com/mttjcksn/serialiser
  GIT_TAG  main
)

FetchContent_MakeAvailable(serialiser)

And reference source files with:

"${serialiser_SOURCE_DIR}/src"

About

A lightweight (de)serialiser lib for easily serialising primitive types, a few STL containers, and custom objects.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published