Skip to content

Wrapper around the libsodium repository providing good integration with CMake when using FetchContent or adding it as a submodule.

License

Notifications You must be signed in to change notification settings

audiovention/libsodium-cmake

 
 

Repository files navigation

libsodium-cmake

Travis build status Windows CI

Description

CMakeWrapper for libsodium, the modern, portable, easy to use crypto library.

This wrapper is written with a few goals in mind:

  1. It should be easy to build
  2. It should be obvious that libsodium's source code hasn't been touched
  3. It should be easy to integrate into projects

Building

Clone!

git clone --recursive https://github.com/robinlinden/libsodium-cmake.git

Build!

mkdir build && cd build
cmake ..
make
make test

Using in your project

include(FetchContent)

FetchContent_Declare(Sodium
    GIT_REPOSITORY https://github.com/robinlinden/libsodium-cmake.git
)
set(SODIUM_DISABLE_TESTS ON)
FetchContent_MakeAvailable(Sodium)

target_link_libraries(${PROJECT_NAME}
    PRIVATE
        sodium
)

About

Wrapper around the libsodium repository providing good integration with CMake when using FetchContent or adding it as a submodule.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • CMake 100.0%