Browse Source

Fix: Source distribution of empty library

default_compile_flags
vector-of-bool 5 years ago
parent
commit
e5fec8dcff
1 changed files with 2 additions and 1 deletions
  1. +2
    -1
      src/dds/sdist.cpp

+ 2
- 1
src/dds/sdist.cpp View File

@@ -28,7 +28,8 @@ void sdist_copy_library(path_ref out_root, const library& lib, const sdist_param
return false;
});

spdlog::info("Export library source from {}", lib.base_dir().string());
spdlog::info("sdist: Export library from {}", lib.base_dir().string());
fs::create_directories(out_root);
for (const auto& source : sources_to_keep) {
auto relpath = fs::relative(source.path, lib.base_dir());
spdlog::info("Copy source file {}", relpath.string());

Loading…
Cancel
Save