You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
269 B
11 lines
269 B
cmake_minimum_required(VERSION 3.15)
|
|
project(ecdaa_issuer C)
|
|
|
|
set(CMAKE_C_STANDARD 11)
|
|
|
|
add_executable(ecdaa_issuer issuer.c)
|
|
|
|
target_include_directories(ecdaa_issuer PUBLIC
|
|
${ECDAA_AMCL}
|
|
)
|
|
target_link_libraries(ecdaa_issuer /usr/local/lib/libecdaa.so)
|
|
|