From 8a850093c6a52245748c96d4054c6e508335f41c Mon Sep 17 00:00:00 2001 From: SergeyBel Date: Sun, 9 Jul 2023 17:32:03 +0300 Subject: [PATCH] add CMakeLists.txt --- CMakeLists.txt | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 CMakeLists.txt diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 0000000..af8e60b --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,10 @@ +cmake_minimum_required(VERSION 2.8) + +project(AES CXX) + +set(SOURCE_FILES src/AES.cpp src/AES.h) +add_library(${PROJECT_NAME} ${SOURCE_FILES}) + +target_include_directories(${PROJECT_NAME} PUBLIC ${CMAKE_CURRENT_SOURCE_DIR}) + +