1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2025-07-06 09:11:47 +02:00

Move progress-bar.cc to libmain

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
This commit is contained in:
regnat 2020-06-08 17:16:52 +02:00
parent c27f92698b
commit 801112de1a
6 changed files with 2 additions and 2 deletions

View file

@ -0,0 +1,13 @@
#pragma once
#include "logging.hh"
namespace nix {
Logger* makeProgressBar(bool printBuildLogs = false);
void startProgressBar(bool printBuildLogs = false);
void stopProgressBar();
}