功能: 服务端生成完整报告并保护单任务
- 使用 libxlsxwriter 常量内存导出 Excel\n- 增加全局任务占用提示与原始数据持久化\n- 保留运行时任务数据并更新接口文档
This commit is contained in:
+28
@@ -0,0 +1,28 @@
|
||||
###############################################################################
|
||||
#
|
||||
# Makefile for libxlsxwriter library.
|
||||
#
|
||||
# Copyright 2014-2022, John McNamara, jmcnamara@cpan.org
|
||||
#
|
||||
|
||||
# Keep the output quiet by default.
|
||||
Q=@
|
||||
ifdef V
|
||||
Q=
|
||||
endif
|
||||
|
||||
# Make everything.
|
||||
all : docs
|
||||
|
||||
# Clean up.
|
||||
clean :
|
||||
$(Q)rm -rf html/*
|
||||
|
||||
# Build the doxygen docs.
|
||||
docs:
|
||||
$(Q)perl ../dev/release/fix_example_links.pl src/examples.txt > src/examples.dox
|
||||
$(Q)doxygen
|
||||
$(Q)../dev/release/fix_dox.sh
|
||||
|
||||
docs_doxygen_only:
|
||||
$(Q)doxygen
|
||||
Reference in New Issue
Block a user