2020-12-28 16:15:37 +01:00
|
|
|
add_executable(crypt_and_hash crypt_and_hash.c)
|
|
|
|
target_link_libraries(crypt_and_hash mbedtls)
|
|
|
|
|
2021-05-12 16:01:52 +02:00
|
|
|
install(TARGETS crypt_and_hash
|
2020-12-28 16:15:37 +01:00
|
|
|
DESTINATION "bin"
|
|
|
|
PERMISSIONS OWNER_READ OWNER_WRITE OWNER_EXECUTE GROUP_READ GROUP_EXECUTE WORLD_READ WORLD_EXECUTE)
|