c6171bfca479fb2ee375e2b1f55e174ed79c4f87
This is a nice feature to have for when the project is included in another project as e.g. a git submodule or used with CMake's FetchContent.
libsodium-cmake
Description
CMakeWrapper for libsodium, the modern, portable, easy to use crypto library.
This wrapper is written with a few goals in mind:
- It should be easy to build
- It should be obvious that libsodium's source code hasn't been touched
- 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
FetchContent_Declare(
Sodium
GIT_REPOSITORY https://github.com/robinlinden/libsodium-cmake.git
)
FetchContent_GetProperties(Sodium)
if(NOT sodium_POPULATED)
set(SODIUM_DISABLE_TESTS ON)
FetchContent_Populate(Sodium)
add_subdirectory(
${sodium_SOURCE_DIR}
${sodium_BINARY_DIR}
)
endif()
target_link_libraries(${PROJECT_NAME}
PRIVATE
sodium
)
Languages
CMake
100%