forked from lix-project/lix
801112de1a
Needed so that we can include it as a logger in loggers.cc without adding a dependency on nix This also requires moving names.hh to libutil to prevent a circular dependency between libmain and libexpr
14 lines
189 B
C++
14 lines
189 B
C++
#pragma once
|
|
|
|
#include "logging.hh"
|
|
|
|
namespace nix {
|
|
|
|
Logger* makeProgressBar(bool printBuildLogs = false);
|
|
|
|
void startProgressBar(bool printBuildLogs = false);
|
|
|
|
void stopProgressBar();
|
|
|
|
}
|