mbedtls/programs/random/CMakeLists.txt

13 lines
503 B
CMake
Raw Normal View History

2011-12-03 21:45:50 +00:00
add_executable(gen_random_havege gen_random_havege.c)
target_link_libraries(gen_random_havege polarssl)
add_executable(gen_random_ctr_drbg gen_random_ctr_drbg.c)
target_link_libraries(gen_random_ctr_drbg polarssl)
add_executable(gen_entropy gen_entropy.c)
target_link_libraries(gen_entropy polarssl)
INSTALL(TARGETS gen_random_havege gen_random_ctr_drbg gen_entropy
DESTINATION "bin"
PERMISSIONS OWNER_READ OWNER_WRITE OWNER_EXECUTE GROUP_READ GROUP_EXECUTE WORLD_READ WORLD_EXECUTE)