diff --git a/Packaging.cmake b/Packaging.cmake index f009629c..1cc5b047 100644 --- a/Packaging.cmake +++ b/Packaging.cmake @@ -1,3 +1,17 @@ +# This file contains the CPack configuration for packaging Bloom. Bloom is currently packaged in Debian and RPM +# packages. To package Bloom, simply run CPack from the CMake build directory: +# +# $ cd build/cmake-build-release/ +# $ cpack +# +# CPack's -G option can be used to specify a particular generator: +# $ cpack -G DEB +# +# If no generator has been specified, CPack will generate packages for all configured generators (see CPACK_GENERATOR +# in Bloom's root CMakeLists.txt). +# +# NOTE: The above commands assume Bloom has been built in 'release' mode, and the install target has been run. + set(CPACK_PACKAGE_NAME "Bloom") set( diff --git a/src/Insight/InsightWorker/Tasks/InsightWorkerTask.cpp b/src/Insight/InsightWorker/Tasks/InsightWorkerTask.cpp index eb0d5bef..07aa5dae 100644 --- a/src/Insight/InsightWorker/Tasks/InsightWorkerTask.cpp +++ b/src/Insight/InsightWorker/Tasks/InsightWorkerTask.cpp @@ -16,7 +16,7 @@ namespace Bloom } catch (std::exception& exception) { this->state = InsightWorkerTaskState::FAILED; - Logger::error("InsightWorker task failed - " + std::string(exception.what())); + Logger::debug("InsightWorker task failed - " + std::string(exception.what())); emit this->failed(QString::fromStdString(exception.what())); } } diff --git a/src/TargetController/Commands/ResumeTargetExecution.hpp b/src/TargetController/Commands/ResumeTargetExecution.hpp index 6d7a72af..5f4a9b21 100644 --- a/src/TargetController/Commands/ResumeTargetExecution.hpp +++ b/src/TargetController/Commands/ResumeTargetExecution.hpp @@ -1,5 +1,7 @@ #pragma once +#include + #include "Command.hpp" namespace Bloom::TargetController::Commands