添加use_tdl工具。

This commit is contained in:
2026-02-27 11:32:19 +08:00
parent 2bc1da535f
commit ec67bea45d
8 changed files with 199 additions and 0 deletions

5
del_file/CMakeLists.txt Normal file
View File

@@ -0,0 +1,5 @@
cmake_minimum_required(VERSION 3.16)
project(del_file LANGUAGES CXX)
add_executable(del_file main.cpp)

7
del_file/main.cpp Normal file
View File

@@ -0,0 +1,7 @@
#include <filesystem>
int main(int argc, char* argv[])
{
return 0;
}