From 3f94512c56b6e9a1469d40c9a5b0623be328b1f5 Mon Sep 17 00:00:00 2001 From: Natalia Portillo Date: Fri, 3 Oct 2025 14:30:43 +0100 Subject: [PATCH] Move checksum source files to checksum directory in CMakeLists.txt --- CMakeLists.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6cf17b2..754da45 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -126,11 +126,11 @@ add_library(aaruformat SHARED include/aaruformat/consts.h include/aaruformat/enu include/log.h src/ddt/hash_map.c include/aaruformat/hash_map.h - src/md5.c + src/checksum/md5.c include/md5.h - src/sha1.c + src/checksum/sha1.c include/sha1.h - src/sha256.c + src/checksum/sha256.c include/sha256.h) include_directories(include include/aaruformat 3rdparty/uthash/include 3rdparty/uthash/src)