From c3dd1ce5e6b5919cfa2394b05788293ab3ea018b Mon Sep 17 00:00:00 2001 From: borgmanJeremy <46930769+borgmanJeremy@users.noreply.github.com> Date: Sat, 11 Sep 2021 13:45:51 -0500 Subject: [PATCH] Added cmake option for debugger mode (#1885) --- CMakeLists.txt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index fa563220..22566839 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -61,6 +61,8 @@ set(RUN_IN_PLACE ${DEFAULT_RUN_IN_PLACE} CACHE BOOL "Run directly in source directory structure") + +option(FLAMESHOT_DEBUG_CAPTURE "Enable mode to make debugging easier" OFF) option(GENERATE_TS "Regenerate translation source files" OFF) option(USE_EXTERNAL_SINGLEAPPLICATION "Use external QtSingleApplication library" OFF) option(USE_EXTERNAL_SPDLOG "Use external spdlog library" OFF)