mirror of
https://github.com/henrydcase/pqc.git
synced 2024-11-22 15:39:07 +00:00
Defines structure of the CMake
This commit is contained in:
parent
0450bc3215
commit
67f275c898
@ -83,14 +83,51 @@ set(CMAKE_C_FLAGS "${C_CXX_FLAGS} -D${ARCH}")
|
||||
set(CMAKE_CXX_FLAGS "${C_CXX_FLAGS} -D${ARCH}")
|
||||
|
||||
add_library(
|
||||
pqclean
|
||||
|
||||
SHARED
|
||||
common
|
||||
OBJECT
|
||||
|
||||
common/fips202.c
|
||||
common/sp800-185.c
|
||||
common/randombytes.c
|
||||
)
|
||||
|
||||
function(define_crypto_alg name namespace src inc)
|
||||
add_library(
|
||||
pqclean_${name}
|
||||
OBJECT
|
||||
${src}
|
||||
)
|
||||
|
||||
target_include_directories(
|
||||
pqclean_${name} PRIVATE
|
||||
common
|
||||
)
|
||||
|
||||
target_compile_definitions(
|
||||
pqclean_${name} PRIVATE
|
||||
-DPQCLEAN_NAMESPACE=${namespace}
|
||||
)
|
||||
|
||||
add_library(
|
||||
pqclean_test_${name}
|
||||
OBJECT
|
||||
test/crypto_sign/testvectors.c
|
||||
)
|
||||
|
||||
target_compile_definitions(
|
||||
pqclean_test_${name} PRIVATE
|
||||
-DPQCLEAN_NAMESPACE=${namespace}
|
||||
)
|
||||
|
||||
target_include_directories(
|
||||
pqclean_test_${name} PRIVATE
|
||||
common
|
||||
${inc}
|
||||
)
|
||||
endfunction()
|
||||
|
||||
set(
|
||||
SRC_CLEAN_DILITHIUM2
|
||||
crypto_sign/dilithium2/clean/ntt.c
|
||||
crypto_sign/dilithium2/clean/packing.c
|
||||
crypto_sign/dilithium2/clean/poly.c
|
||||
@ -101,26 +138,42 @@ add_library(
|
||||
crypto_sign/dilithium2/clean/symmetric-shake.c
|
||||
)
|
||||
|
||||
target_include_directories(
|
||||
pqclean PRIVATE
|
||||
set(
|
||||
INC_CLEAN_DILITHIUM2
|
||||
crypto_sign/dilithium2/clean
|
||||
)
|
||||
|
||||
define_crypto_alg(dilithium2_clean
|
||||
PQCLEAN_DILITHIUM2_CLEAN "${SRC_CLEAN_DILITHIUM2}" "${INC_CLEAN_DILITHIUM2}")
|
||||
|
||||
add_library(
|
||||
pqclean
|
||||
SHARED
|
||||
)
|
||||
|
||||
add_library(
|
||||
pqclean_s
|
||||
STATIC
|
||||
)
|
||||
|
||||
target_link_libraries(
|
||||
pqclean
|
||||
common
|
||||
pqclean_dilithium2_clean
|
||||
)
|
||||
|
||||
target_link_libraries(
|
||||
pqclean_s
|
||||
common
|
||||
pqclean_dilithium2_clean
|
||||
)
|
||||
|
||||
add_executable(
|
||||
test
|
||||
|
||||
test/crypto_sign/testvectors.c
|
||||
)
|
||||
|
||||
target_include_directories(
|
||||
test PRIVATE
|
||||
common
|
||||
crypto_sign/dilithium2/clean
|
||||
)
|
||||
|
||||
target_link_libraries(
|
||||
test
|
||||
pqclean
|
||||
pqclean_s
|
||||
pqclean_test_dilithium2_clean
|
||||
)
|
||||
|
||||
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -DPQCLEAN_NAMESPACE=PQCLEAN_DILITHIUM2_CLEAN")
|
Loading…
Reference in New Issue
Block a user