after 2 weeks of porting over the ngc_ft1 code to solanaceae and rewriting the highlevel logic

(29 commits predate this)
This commit is contained in:
2023-08-19 22:37:55 +02:00
commit 89d8d728ff
24 changed files with 4233 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")