Fixed daemon tests broken built, see #20

Added daemon tests build to build.sh script
Changed daemon version to 2.0.4
This commit is contained in:
Andrea Bondavalli 2025-03-12 10:00:23 +01:00
parent 29dc02ddc5
commit 838dc59b91
3 changed files with 8 additions and 4 deletions

View File

@ -4,8 +4,8 @@
#
#we need clang when compiling on ARMv7
export CC=/usr/bin/clang
export CXX=/usr/bin/clang++
#export CC=/usr/bin/clang
#export CXX=/usr/bin/clang++
TOPDIR=$(pwd)
@ -43,4 +43,7 @@ cmake \
.
make
cd ..
cd test
make
cd ..

View File

@ -1,7 +1,7 @@
//
// main.cpp
//
// Copyright (c) 2019 2020 Andrea Bondavalli. All rights reserved.
// Copyright (c) 2019 2025 Andrea Bondavalli. All rights reserved.
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
@ -43,7 +43,7 @@ namespace po = boost::program_options;
namespace postyle = boost::program_options::command_line_style;
namespace logging = boost::log;
static const std::string version("bondagit-2.0.3");
static const std::string version("bondagit-2.0.4");
static std::atomic<bool> terminate = false;
void termination_handler(int signum) {

View File

@ -1,6 +1,7 @@
// basic file operations
#include <iostream>
#include <fstream>
#include <cstdint>
using namespace std;