diff options
author | Determinant <[email protected]> | 2018-07-31 13:24:14 -0400 |
---|---|---|
committer | Determinant <[email protected]> | 2018-07-31 13:24:14 -0400 |
commit | 6131c5e5cc1e83fdbfbc8fc4ce419765ba3d180a (patch) | |
tree | f49440a55b84391029516ebd4de28cb266880c8b /CMakeLists.txt | |
parent | ec6a1f84324faf8e7c92f32137464db57410f58a (diff) |
add cmake options
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 0e65e00..63e92f7 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -55,8 +55,11 @@ if(NOT CMAKE_BUILD_TYPE AND NOT CMAKE_CONFIGURATION_TYPES) set(CMAKE_BUILD_TYPE "Release") endif() -option(HOTSTUFF_ENABLE_DEBUG_LOG "enable debug log" OFF) -option(HOTSTUFF_ENABLE_NORMAL_LOG "enable normal log" ON) +option(HOTSTUFF_DEBUG_LOG "enable debug log" OFF) +option(HOTSTUFF_NORMAL_LOG "enable normal log" ON) +option(HOTSTUFF_PROTO_LOG "enable protocol log" OFF) +option(HOTSTUFF_MSG_STAT "eanble message statistics" ON) +option(HOTSTUFF_BLK_PROFILE "enable block profiling" OFF) configure_file(src/config.h.in include/hotstuff/config.h @ONLY) |