win打包脚本。

This commit is contained in:
2026-03-30 16:39:34 +08:00
parent bac83f6cf8
commit 86034c71e0
4 changed files with 98 additions and 9 deletions

View File

@@ -1,9 +1,9 @@
#include <CLI11.hpp>
#include <ToolBox.h>
#include <algorithm>
#include <boost/algorithm/string.hpp>
#include <boost/nowide/iostream.hpp>
#include <chrono>
#include <ToolBox.h>
#include <iomanip>
#include <iostream>
#include <spdlog/sinks/rotating_file_sink.h>
@@ -13,7 +13,7 @@
#include <string>
#include <tinyxml2.h>
#include <vector>
#include <zoost.h>
#include <zoost/zoost.h>
#ifdef _WIN32
#include <windows.h>
@@ -497,7 +497,8 @@ int main(int argc, char** argv)
ofs.close();
}
ifs.close();
boost::nowide::cout << "已生成默认配置文件: fileUpdater.xml" << std::endl;
auto msg = fmt::format("{} on {} 已生成默认配置文件: fileUpdater.xml", VERSION_GIT_COMMIT, VERSION_GIT_BRANCH);
boost::nowide::cout << msg << std::endl;
return 0;
}
}