12 lines
199 B
CMake
12 lines
199 B
CMake
set(SRC
|
|
decrypt.c
|
|
encrypt.c
|
|
romulus_m_reference.c
|
|
skinny_reference.c
|
|
encrypt_wrapper.c
|
|
)
|
|
|
|
include_directories(../ISAAC)
|
|
link_libraries(isaac)
|
|
add_library(romulus-m STATIC ${SRC})
|