romulus/Romulus-M/CMakeLists.txt

12 lines
199 B
CMake
Raw Normal View History

2022-01-21 18:46:03 +00:00
set(SRC
decrypt.c
encrypt.c
romulus_m_reference.c
skinny_reference.c
2022-01-25 23:01:41 +00:00
encrypt_wrapper.c
2022-01-21 18:46:03 +00:00
)
2022-01-30 00:53:20 +00:00
include_directories(../ISAAC)
link_libraries(isaac)
2022-01-25 23:01:41 +00:00
add_library(romulus-m STATIC ${SRC})