https://github.com/robinlinden/libsodium-cmake
Wrapper around the libsodium repository providing good integration with CMake when using FetchContent or adding it as a submodule.
https://github.com/robinlinden/libsodium-cmake
cmake libsodium
Last synced: 5 months ago
JSON representation
Wrapper around the libsodium repository providing good integration with CMake when using FetchContent or adding it as a submodule.
- Host: GitHub
- URL: https://github.com/robinlinden/libsodium-cmake
- Owner: robinlinden
- License: isc
- Created: 2019-04-14T22:44:47.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2025-07-17T21:42:48.000Z (11 months ago)
- Last Synced: 2026-01-15T12:42:27.958Z (5 months ago)
- Topics: cmake, libsodium
- Language: CMake
- Homepage:
- Size: 64.5 KB
- Stars: 49
- Watchers: 4
- Forks: 35
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# libsodium-cmake
## Description
CMakeWrapper for [libsodium](https://github.com/jedisct1/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
1. It should be obvious that libsodium's source code hasn't been touched
1. It should be easy to integrate into projects
## Building
Clone!
`git clone --recursive https://github.com/robinlinden/libsodium-cmake.git`
Build!
```sh
mkdir build && cd build
cmake ..
make
make test
```
## Using in your project
```cmake
cmake_minimum_required(VERSION 3.14)
# 3.11 and higher is supported, but this example uses
# `FetchContent_MakeAvailable` which is only available starting with 3.14.
include(FetchContent)
# Update the commit to point to whatever libsodium-cmake-commit you want to target.
FetchContent_Declare(Sodium
GIT_REPOSITORY https://github.com/robinlinden/libsodium-cmake.git
GIT_TAG e5b985ad0dd235d8c4307ea3a385b45e76c74c6a # HEAD, last updated at 2025-04-13
)
set(SODIUM_DISABLE_TESTS ON)
FetchContent_MakeAvailable(Sodium)
target_link_libraries(${PROJECT_NAME}
PRIVATE
sodium
)
```