Paul Bakker | 367dae4 | 2009-06-28 21:50:27 +0000 | [diff] [blame^] | 1 | add_executable(hello hello.c) |
2 | target_link_libraries(hello polarssl) | ||||
3 | |||||
4 | add_executable(md5sum md5sum.c) | ||||
5 | target_link_libraries(md5sum polarssl) | ||||
6 | |||||
7 | add_executable(sha1sum sha1sum.c) | ||||
8 | target_link_libraries(sha1sum polarssl) | ||||
9 | |||||
10 | add_executable(sha2sum sha2sum.c) | ||||
11 | target_link_libraries(sha2sum polarssl) |