5 lines
185 B
CMake
5 lines
185 B
CMake
|
cmake_minimum_required(VERSION 3.16)
|
||
|
|
||
|
project(tinyaes LANGUAGES C)
|
||
|
add_library(tinyaes STATIC aes.h aes.c aes.hpp)
|
||
|
target_include_directories(tinyaes PUBLIC ${CMAKE_CURRENT_SOURCE_DIR})
|