8 lines
173 B
CMake
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) |