Browse Source

Change extension on export directory

default_compile_flags
vector-of-bool 5 years ago
parent
commit
02448f78a3
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/dds/build.cpp

+ 1
- 1
src/dds/build.cpp View File

void generate_export(const build_params& params, void generate_export(const build_params& params,
fs::path archive_file, fs::path archive_file,
const source_list& sources) { const source_list& sources) {
const auto export_root = params.out_root / fmt::format("{}.export-root", params.export_name);
const auto export_root = params.out_root / fmt::format("{}.lpk", params.export_name);
spdlog::info("Generating library export: {}", export_root.string()); spdlog::info("Generating library export: {}", export_root.string());
fs::remove_all(export_root); fs::remove_all(export_root);
fs::create_directories(export_root); fs::create_directories(export_root);

Loading…
Cancel
Save