makerom/deps/libmbedtls/CMakeLists.txt
2025-01-15 12:29:18 +00:00

8 lines
173 B
CMake

cmake_minimum_required(VERSION 3.22)
project(mbedtls)
file(GLOB SOURCES src/*.c)
add_library(mbedtls STATIC ${SOURCES})
target_include_directories(mbedtls PUBLIC include)