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

7 lines
260 B
CMake
Raw Normal View History

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