diff options
author | Leandro A. F. Pereira <leandro@hardinfo.org> | 2010-05-05 21:09:51 -0300 |
---|---|---|
committer | Leandro A. F. Pereira <leandro@hardinfo.org> | 2010-05-05 21:09:51 -0300 |
commit | 5186e50a8c952fb3bd9ab415958b237e16575ec7 (patch) | |
tree | f9eb99dfd8152c78104e7ef38bb94a8d6713aa23 /CMakeLists.txt | |
parent | 0c18eff9be97d3abcd67e8cf37f11c505761c488 (diff) |
Compile benchmark algorithms with -O0.
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 53e07d09..604650a4 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -120,6 +120,15 @@ set(MODULE_benchmark_SOURCES modules/benchmark/sha1.c ) +set_source_files_properties( + modules/benchmark/blowfish.c + modules/benchmark/fftbench.c + modules/benchmark/md5.c + modules/benchmark/sha1.c + PROPERTIES + COMPILE_FLAGS "-O0" +) + foreach (_module ${HARDINFO_MODULES}) add_library(${_module} MODULE ${MODULE_${_module}_SOURCES}) endforeach() |