pineapple/externals/mbedtls/programs/aes/CMakeLists.txt

7 lines
260 B
CMake
Raw Normal View History

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)