initial version of SQIsign
Co-authored-by: Jorge Chavez-Saab <jorgechavezsaab@gmail.com> Co-authored-by: Maria Corte-Real Santos <36373796+mariascrs@users.noreply.github.com> Co-authored-by: Luca De Feo <github@defeo.lu> Co-authored-by: Jonathan Komada Eriksen <jonathan.eriksen97@gmail.com> Co-authored-by: Basil Hess <bhe@zurich.ibm.com> Co-authored-by: Antonin Leroux <18654258+tonioecto@users.noreply.github.com> Co-authored-by: Patrick Longa <plonga@microsoft.com> Co-authored-by: Lorenz Panny <lorenz@yx7.cc> Co-authored-by: Francisco Rodríguez-Henríquez <francisco.rodriguez@tii.ae> Co-authored-by: Sina Schaeffler <108983332+syndrakon@users.noreply.github.com> Co-authored-by: Benjamin Wesolowski <19474926+Calodeon@users.noreply.github.com>
This commit is contained in:
15
apps/CMakeLists.txt
Normal file
15
apps/CMakeLists.txt
Normal file
@@ -0,0 +1,15 @@
|
||||
# NIST KAT generation apps
|
||||
foreach(SVARIANT ${SVARIANT_S})
|
||||
string(TOLOWER ${SVARIANT} SVARIANT_LOWER)
|
||||
add_executable(PQCgenKAT_sign_${SVARIANT_LOWER} PQCgenKAT_sign.c)
|
||||
target_link_libraries(PQCgenKAT_sign_${SVARIANT_LOWER} PRIVATE sqisign_${SVARIANT_LOWER}_test_nistapi)
|
||||
target_include_directories(PQCgenKAT_sign_${SVARIANT_LOWER} PRIVATE ../include)
|
||||
endforeach()
|
||||
|
||||
# Examples with NIST API
|
||||
foreach(SVARIANT ${SVARIANT_S})
|
||||
string(TOLOWER ${SVARIANT} SVARIANT_LOWER)
|
||||
add_executable(example_nistapi_${SVARIANT_LOWER} example_nistapi.c)
|
||||
target_link_libraries(example_nistapi_${SVARIANT_LOWER} PRIVATE sqisign_${SVARIANT_LOWER}_nistapi)
|
||||
target_include_directories(example_nistapi_${SVARIANT_LOWER} PRIVATE ../include ../src/${SVARIANT_LOWER})
|
||||
endforeach()
|
||||
Reference in New Issue
Block a user