diff options
author | Julien Dessaux | 2019-09-12 17:57:17 +0200 |
---|---|---|
committer | Julien Dessaux | 2019-09-12 17:57:17 +0200 |
commit | 290f61ab96da965ca4002cef6c7cca6cc4694e7b (patch) | |
tree | 51f19e57b8cc22e05c1281b0bcacfd7e72cf8a8d | |
parent | Document the cli arguments in README (diff) | |
download | bastion-master.tar.gz bastion-master.tar.bz2 bastion-master.zip |
-rw-r--r-- | CMakeLists.txt | 3 |
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() |