romulus/Romulus-M/CMakeLists.txt

10 lines
173 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-25 23:01:41 +00:00
add_library(romulus-m STATIC ${SRC})
install(TARGETS romulus-m)