95c29f3cd1
Initial fork from f2d678e6e89b6508147086610e985d4e8416e867 (1.0.2 beta). (This change contains substantial changes from the original and effectively starts a new history.)
25 lines
242 B
CMake
25 lines
242 B
CMake
include_directories(. .. ../../include)
|
|
|
|
add_library(
|
|
ec
|
|
|
|
OBJECT
|
|
|
|
ec.c
|
|
oct.c
|
|
simple.c
|
|
ec_montgomery.c
|
|
wnaf.c
|
|
ec_key.c
|
|
ec_asn1.c
|
|
ec_error.c
|
|
)
|
|
|
|
add_executable(
|
|
example_mul
|
|
|
|
example_mul.c
|
|
)
|
|
|
|
target_link_libraries(example_mul crypto)
|