This repository provides FindBotan.cmake
which allows for easy inclusion of Botan into CMake based projects.
Unlike other CMake integrations for Botan, this one does not simply add all the Botan files to a target. Instead, it does the following automagically:
- Download the requested version of Botan (if not provided locally).
- Run Botan's python script to generate the amalgamation files
botan_all.h
andbotan_all.cpp
. - Provide a CMake target to compile & link those amalgamation files.
Refer to Botan's The Amalgamation Build documentation for more information on the amalgamation build.
Code provided by this repository is considered to be public domain using the Unlicense license. However, note that Botan ships with its own licensing.
To use this Botan CMake integration:
- Download/copy
cmake/FindBotan.cmake
from this repository to your local CMake project. - Add that CMake script to your CMake module path (
CMAKE_MODULE_PATH
). - Use
find_package()
to "include" that CMake script in your project. Do not specify any components. - Use the
botan_generate()
function to generate a target with specific Botan modules enabled. - Use
target_link_libraries()
to link to the generated CMake target. - Include
botan_all.h
where needed.
An example project is provided under /example
.
Your CMakeLists.txt
:
# Find Botan
find_package(
botan 3.4.0
REQUIRED
)
# Create target "my_botan_target" with modules "system_rng" and "sha3" enabled
# Any Botan module can be listed here
botan_generate(
my_botan_target
system_rng
sha3
)
# Link to generated target
target_link_libraries(
MyTarget
PRIVATE
my_botan_target
)
By default, this CMake module will download the Botan upstream distribution tarball. If this is undesired, a path to a
local copy of the tarball can be supplied via the Botan_PATH
variable.