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

namespace { namespace {


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


extend(sources, src_sources); extend(sources, src_sources);
} }


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



Loading…
Cancel
Save