This commit is contained in:
Nav
2022-04-23 17:41:28 +01:00
parent b3694970bf
commit 2f2fbfcd0f
3 changed files with 17 additions and 1 deletions

View File

@@ -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(CPACK_PACKAGE_NAME "Bloom")
set( set(

View File

@@ -16,7 +16,7 @@ namespace Bloom
} catch (std::exception& exception) { } catch (std::exception& exception) {
this->state = InsightWorkerTaskState::FAILED; 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())); emit this->failed(QString::fromStdString(exception.what()));
} }
} }

View File

@@ -1,5 +1,7 @@
#pragma once #pragma once
#include <optional>
#include "Command.hpp" #include "Command.hpp"
namespace Bloom::TargetController::Commands namespace Bloom::TargetController::Commands