diff options
author | irungentoo <irungentoo@gmail.com> | 2013-08-10 16:20:54 -0700 |
---|---|---|
committer | irungentoo <irungentoo@gmail.com> | 2013-08-10 16:20:54 -0700 |
commit | 8e05bcb5f92c69c43564e95832d3aa56075412cf (patch) | |
tree | 16bbc15380c8a2b32f0b6e19343967ab736591d9 /testing/cmake | |
parent | e37fd0c607e3406aeab80b459008b3197341667e (diff) | |
parent | a5f34764d2a7bc5442fb7dca75dae7d85e61efc4 (diff) |
Merge pull request #422 from slvr/crypto-speed-boost
Cryptography speed boost
Diffstat (limited to 'testing/cmake')
-rw-r--r-- | testing/cmake/crypto_speed_test.cmake | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/testing/cmake/crypto_speed_test.cmake b/testing/cmake/crypto_speed_test.cmake new file mode 100644 index 00000000..c269af5b --- /dev/null +++ b/testing/cmake/crypto_speed_test.cmake | |||
@@ -0,0 +1,9 @@ | |||
1 | cmake_minimum_required(VERSION 2.6.0) | ||
2 | project(crypto_speed_test C) | ||
3 | |||
4 | set(exe_name crypto_speed_test) | ||
5 | |||
6 | add_executable(${exe_name} | ||
7 | crypto_speed_test.c) | ||
8 | |||
9 | linkCoreLibraries(${exe_name}) | ||