This commit is contained in:
2023-08-08 18:16:06 +02:00
parent 9ea1fbd725
commit 80791626c7
5 changed files with 370 additions and 0 deletions

12
external/sha1/CMakeLists.txt vendored Normal file
View File

@@ -0,0 +1,12 @@
cmake_minimum_required(VERSION 3.8)
project(sha1 LANGUAGES C)
add_library(sha1 STATIC
./sha1/sha1.h
./sha1/sha1.c
)
add_library(sha1::sha1 ALIAS sha1)
target_include_directories(sha1 PUBLIC "sha1")