diff --git a/CMakeLists.txt b/CMakeLists.txt index 9ca66e44..b0aeed64 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -216,24 +216,24 @@ add_library( ) add_library( - pqclean + pqc SHARED ) add_library( - pqclean_s + pqc_s STATIC ) get_property(OBJ_LIBS GLOBAL PROPERTY obj_libs) target_link_libraries( - pqclean + pqc common ${OBJ_LIBS} ) target_link_libraries( - pqclean_s + pqc_s common ${OBJ_LIBS} ) @@ -248,7 +248,7 @@ target_link_libraries( ut gtest gtest_main - pqclean_s) + pqc_s) target_include_directories( ut PRIVATE @@ -256,10 +256,10 @@ target_include_directories( ${CMAKE_SOURCE_DIR}) -install(TARGETS pqclean pqclean_s +install(TARGETS pqc pqc_s PERMISSIONS OWNER_READ OWNER_WRITE GROUP_READ GROUP_WRITE WORLD_READ WORLD_WRITE LIBRARY DESTINATION lib ARCHIVE DESTINATION lib) install(FILES ${QRS_PUBLIC_INC} - DESTINATION include/pqclean) + DESTINATION include/pqc) diff --git a/test/katrunner/src/main.rs b/test/katrunner/src/main.rs index 0193c8a9..2579b71a 100644 --- a/test/katrunner/src/main.rs +++ b/test/katrunner/src/main.rs @@ -22,7 +22,8 @@ fn signature_scheme(el: &TestVector) { assert_eq!( pqc_sig_verify(p, msg.as_mut_ptr(), el.sig.msg.len() as u64, el.sig.sm.as_ptr(), el.sig.sm.len() as u64, - el.sig.pk.as_ptr()), true); + el.sig.pk.as_ptr()), + true); } }