Defines structure of the CMake

This commit is contained in:
Henry Case 2021-02-17 12:40:38 +00:00
parent 354257df8e
commit 63bfaff41b

View File

@ -83,14 +83,51 @@ set(CMAKE_C_FLAGS "${C_CXX_FLAGS} -D${ARCH}")
set(CMAKE_CXX_FLAGS "${C_CXX_FLAGS} -D${ARCH}") set(CMAKE_CXX_FLAGS "${C_CXX_FLAGS} -D${ARCH}")
add_library( add_library(
pqclean common
OBJECT
SHARED
common/fips202.c common/fips202.c
common/sp800-185.c common/sp800-185.c
common/randombytes.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/ntt.c
crypto_sign/dilithium2/clean/packing.c crypto_sign/dilithium2/clean/packing.c
crypto_sign/dilithium2/clean/poly.c crypto_sign/dilithium2/clean/poly.c
@ -101,26 +138,42 @@ add_library(
crypto_sign/dilithium2/clean/symmetric-shake.c crypto_sign/dilithium2/clean/symmetric-shake.c
) )
target_include_directories( set(
pqclean PRIVATE 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 common
pqclean_dilithium2_clean
)
target_link_libraries(
pqclean_s
common
pqclean_dilithium2_clean
) )
add_executable( add_executable(
test test
test/crypto_sign/testvectors.c
)
target_include_directories(
test PRIVATE
common
crypto_sign/dilithium2/clean
) )
target_link_libraries( target_link_libraries(
test test
pqclean pqclean_s
pqclean_test_dilithium2_clean
) )
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -DPQCLEAN_NAMESPACE=PQCLEAN_DILITHIUM2_CLEAN")