aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJulien Dessaux2019-09-12 17:57:17 +0200
committerJulien Dessaux2019-09-12 17:57:17 +0200
commit290f61ab96da965ca4002cef6c7cca6cc4694e7b (patch)
tree51f19e57b8cc22e05c1281b0bcacfd7e72cf8a8d
parentDocument the cli arguments in README (diff)
downloadbastion-master.tar.gz
bastion-master.tar.bz2
bastion-master.zip
Added forgotten cmake definitionHEADmaster
-rw-r--r--CMakeLists.txt3
1 files changed, 3 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 0cc4c51..c17a978 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -22,6 +22,9 @@ set(CMAKE_C_FLAGS_RELWITHDEBINFO "-O0 -ggdb3")
option(LIBSSH_VERBOSE_OUTPUT "whether or not verbose output for libssh mode is activated" OFF)
option(SESSION_RECORDING "whether or not recording feature based on lib termrec is activated" ON)
+if(LIBSSH_VERBOSE_OUTPUT)
+ add_definitions(-DLIBSSH_VERBOSE_OUTPUT)
+endif()
if(SESSION_RECORDING)
add_definitions(-DSESSION_RECORDING)
endif()