2018-07-10 09:10:21 +02:00
|
|
|
add_executable(crypto_examples crypto_examples.c)
|
2018-11-02 11:13:30 +01:00
|
|
|
target_link_libraries(crypto_examples mbedcrypto)
|
2018-07-10 09:10:21 +02:00
|
|
|
|
2019-01-02 17:28:46 +01:00
|
|
|
add_executable(key_ladder_demo key_ladder_demo.c)
|
2018-11-02 11:13:30 +01:00
|
|
|
target_link_libraries(key_ladder_demo mbedcrypto)
|
2019-01-02 17:28:46 +01:00
|
|
|
|
2019-01-02 17:29:04 +01:00
|
|
|
add_executable(psa_constant_names psa_constant_names.c)
|
2018-11-02 11:13:30 +01:00
|
|
|
target_link_libraries(psa_constant_names mbedcrypto)
|
2019-01-02 17:29:04 +01:00
|
|
|
|
2019-02-07 11:50:49 +01:00
|
|
|
add_custom_target(
|
|
|
|
psa_constant_names_generated
|
|
|
|
COMMAND ${PYTHON_EXECUTABLE} scripts/generate_psa_constants.py
|
|
|
|
WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/../../
|
|
|
|
)
|
|
|
|
add_dependencies(psa_constant_names psa_constant_names_generated)
|
|
|
|
|
2019-01-02 17:28:46 +01:00
|
|
|
install(TARGETS
|
|
|
|
crypto_examples
|
|
|
|
key_ladder_demo
|
2019-01-02 17:29:04 +01:00
|
|
|
psa_constant_names
|
2018-07-10 09:10:21 +02:00
|
|
|
DESTINATION "bin"
|
|
|
|
PERMISSIONS OWNER_READ OWNER_WRITE OWNER_EXECUTE GROUP_READ GROUP_EXECUTE WORLD_READ WORLD_EXECUTE)
|
|
|
|
|
2019-01-02 17:28:46 +01:00
|
|
|
install(PROGRAMS
|
|
|
|
key_ladder_demo.sh
|
|
|
|
DESTINATION "bin")
|