mirror of
https://github.com/kokke/tiny-AES-c
synced 2024-11-22 05:21:52 +03:00
10 lines
167 B
CMake
10 lines
167 B
CMake
cmake_minimum_required(VERSION 2.8.12)
|
|
|
|
project(tinyaes C ASM)
|
|
|
|
add_library(tiny-aes
|
|
aes.c
|
|
)
|
|
|
|
target_include_directories(tiny-aes PRIVATE tiny-AES-c/)
|