fb2ac390f5
BUG=129 Change-Id: Id7a92285601ff4276f4015eaee290bf77aa22b47 Reviewed-on: https://boringssl-review.googlesource.com/13628 Reviewed-by: David Benjamin <davidben@google.com> Commit-Queue: David Benjamin <davidben@google.com> CQ-Verified: CQ bot account: commit-bot@chromium.org <commit-bot@chromium.org>
52 lines
706 B
CMake
52 lines
706 B
CMake
include_directories(../../include)
|
|
|
|
if (${ARCH} STREQUAL "x86_64")
|
|
set(
|
|
EC_ARCH_SOURCES
|
|
|
|
p256-x86_64-asm.${ASM_EXT}
|
|
)
|
|
endif()
|
|
|
|
add_library(
|
|
ec
|
|
|
|
OBJECT
|
|
|
|
ec.c
|
|
ec_asn1.c
|
|
ec_key.c
|
|
ec_montgomery.c
|
|
oct.c
|
|
p224-64.c
|
|
p256-64.c
|
|
p256-x86_64.c
|
|
simple.c
|
|
util-64.c
|
|
wnaf.c
|
|
|
|
${EC_ARCH_SOURCES}
|
|
)
|
|
|
|
perlasm(p256-x86_64-asm.${ASM_EXT} asm/p256-x86_64-asm.pl)
|
|
|
|
add_executable(
|
|
example_mul
|
|
|
|
example_mul.c
|
|
|
|
$<TARGET_OBJECTS:test_support>
|
|
)
|
|
|
|
add_executable(
|
|
p256-x86_64_test
|
|
|
|
p256-x86_64_test.cc
|
|
|
|
$<TARGET_OBJECTS:test_support>
|
|
)
|
|
|
|
target_link_libraries(example_mul crypto)
|
|
target_link_libraries(p256-x86_64_test crypto)
|
|
add_dependencies(all_tests example_mul p256-x86_64_test)
|