Vita3K/vita3k/crypto/CMakeLists.txt
2019-11-02 00:42:40 +02:00

11 lines
210 B
CMake

add_library(
crypto
STATIC
include/crypto/aes.h
include/crypto/hash.h
src/aes.cpp
src/hash.cpp
)
target_include_directories(crypto PUBLIC include)
target_link_libraries(crypto PRIVATE crypto-algorithms)