2009-06-28 23:50:27 +02:00
|
|
|
add_executable(aescrypt2 aescrypt2.c)
|
2015-01-27 16:44:46 +01:00
|
|
|
target_link_libraries(aescrypt2 mbedtls)
|
2011-01-05 16:07:54 +01:00
|
|
|
|
2011-01-21 10:32:12 +01:00
|
|
|
add_executable(crypt_and_hash crypt_and_hash.c)
|
2015-01-27 16:44:46 +01:00
|
|
|
target_link_libraries(crypt_and_hash mbedtls)
|
2011-01-21 10:32:12 +01:00
|
|
|
|
2011-12-11 12:29:51 +01:00
|
|
|
install(TARGETS aescrypt2 crypt_and_hash
|
2011-01-05 16:07:54 +01:00
|
|
|
DESTINATION "bin"
|
|
|
|
PERMISSIONS OWNER_READ OWNER_WRITE OWNER_EXECUTE GROUP_READ GROUP_EXECUTE WORLD_READ WORLD_EXECUTE)
|