From d1aea038b08db11d5f12132b2842aba5fff8dd5a Mon Sep 17 00:00:00 2001 From: Malfurious Date: Mon, 21 Oct 2024 13:27:32 -0400 Subject: Add Mbedtls library I'm planning to start rewriting compass in C, so I've been looking for a portable C-oriented crypto library to replace Crypto++. This commit adds version 3.6.0 of mbedtls to the build. Mbedtls is available under the Apache license. Signed-off-by: Malfurious --- .gitmodules | 3 +++ CMakeLists.txt | 9 ++++++++- mbedtls | 1 + 3 files changed, 12 insertions(+), 1 deletion(-) create mode 100644 .gitmodules create mode 160000 mbedtls diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 0000000..f1b208d --- /dev/null +++ b/.gitmodules @@ -0,0 +1,3 @@ +[submodule "mbedtls"] + path = mbedtls + url = https://github.com/Mbed-TLS/mbedtls diff --git a/CMakeLists.txt b/CMakeLists.txt index 4f59811..e0fd0a8 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,5 +1,10 @@ cmake_minimum_required(VERSION 3.0) -project(compass CXX) +project(compass LANGUAGES CXX) + +set(ENABLE_PROGRAMS OFF CACHE BOOL "Build mbedtls exemplary programs") +set(ENABLE_TESTING OFF CACHE BOOL "Build mbedtls testing harness") +add_subdirectory(mbedtls) +include_directories(mbedtls/include) add_executable(compass main.cpp @@ -11,4 +16,6 @@ add_executable(compass Socket.cpp ) +target_link_libraries(compass mbedtls) + install(TARGETS compass) diff --git a/mbedtls b/mbedtls new file mode 160000 index 0000000..2ca6c28 --- /dev/null +++ b/mbedtls @@ -0,0 +1 @@ +Subproject commit 2ca6c285a0dd3f33982dd57299012dacab1ff206 -- cgit v1.2.3