From 8e5e43cbffbf90c591f4e4003cda6bb32836f615 Mon Sep 17 00:00:00 2001 From: Aster Seker Date: Thu, 4 Sep 2025 00:00:58 +0300 Subject: [PATCH] Define HMAC headers for installation --- CMakeLists.txt | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 99c1709..b562a0f 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -13,8 +13,16 @@ set(HMAC_SOURCES sha1.cpp sha256.cpp sha512.cpp - hmac.cpp - hmac_utils.cpp + hmac.cpp + hmac_utils.cpp +) + +set(HMAC_HEADERS + hmac.hpp + hmac_utils.hpp + sha1.hpp + sha256.hpp + sha512.hpp ) add_library(hmac STATIC ${HMAC_SOURCES})