mirror of
https://github.com/pineappleEA/pineapple-src.git
synced 2024-11-26 11:38:26 -05:00
7 lines
260 B
CMake
Executable File
7 lines
260 B
CMake
Executable File
add_executable(crypt_and_hash crypt_and_hash.c)
|
|
target_link_libraries(crypt_and_hash mbedtls)
|
|
|
|
install(TARGETS crypt_and_hash
|
|
DESTINATION "bin"
|
|
PERMISSIONS OWNER_READ OWNER_WRITE OWNER_EXECUTE GROUP_READ GROUP_EXECUTE WORLD_READ WORLD_EXECUTE)
|