Browse Source

Logging for file scans

default_compile_flags
vector-of-bool 4 years ago
parent
commit
4813372a49
1 changed files with 2 additions and 0 deletions
  1. +2
    -0
      src/dds/library/root.cpp

+ 2
- 0
src/dds/library/root.cpp View File

@@ -15,6 +15,7 @@ using namespace dds;
namespace {

auto collect_pf_sources(path_ref path) {
dds_log(debug, "Scanning for sources in {}", path.string());
auto include_dir = source_root{path / "include"};
auto src_dir = source_root{path / "src"};

@@ -48,6 +49,7 @@ auto collect_pf_sources(path_ref path) {
extend(sources, src_sources);
}

dds_log(debug, "Found {} source files", sources.size());
return sources;
}


Loading…
Cancel
Save