blob: 37038c0de69ad3be8735ae8917e6f51cc84dad30 [file] [log] [blame]
itayzafrira3ff8a62018-07-10 10:10:21 +03001add_executable(crypto_examples crypto_examples.c)
2target_link_libraries(crypto_examples mbedtls)
3
Gilles Peskinef31dbb72019-01-02 17:28:46 +01004add_executable(key_ladder_demo key_ladder_demo.c)
5target_link_libraries(key_ladder_demo mbedtls)
6
Gilles Peskine6a785732019-01-02 17:29:04 +01007add_executable(psa_constant_names psa_constant_names.c)
8target_link_libraries(psa_constant_names mbedtls)
9
Gilles Peskinef31dbb72019-01-02 17:28:46 +010010install(TARGETS
11 crypto_examples
12 key_ladder_demo
Gilles Peskine6a785732019-01-02 17:29:04 +010013 psa_constant_names
itayzafrira3ff8a62018-07-10 10:10:21 +030014 DESTINATION "bin"
15 PERMISSIONS OWNER_READ OWNER_WRITE OWNER_EXECUTE GROUP_READ GROUP_EXECUTE WORLD_READ WORLD_EXECUTE)
16
Gilles Peskinef31dbb72019-01-02 17:28:46 +010017install(PROGRAMS
18 key_ladder_demo.sh
19 DESTINATION "bin")