remove wgets

This commit is contained in:
2026-07-22 00:39:27 +02:00
parent 0a4ce6998a
commit c491b3a78d
+1 -7
View File
@@ -284,14 +284,8 @@ class Program
{
if (system("git -C .. submodule init") != 0)
Runtime.FatalError("Failed to fetch KTX-Software");
/*if (system(scope $"wget -O include/KHR/khr_df.h https://registry.khronos.org/DataFormat/api/1.3/khr_df.h") != 0)
Runtime.FatalError("Failed to download khr_df.h");
if (system(scope $"wget -O include/vulkan_core.h https://raw.githubusercontent.com/KhronosGroup/Vulkan-Headers/refs/heads/main/include/vulkan/vulkan_core.h") != 0)
Runtime.FatalError("Failed to download vulkan_core.h");
if (system(scope $"wget -O include/vk_platform.h https://raw.githubusercontent.com/KhronosGroup/Vulkan-Headers/refs/heads/main/include/vulkan/vk_platform.h") != 0)
Runtime.FatalError("Failed to download vk_platform.h");*/
scope ExampleGenerator(char8*[?]("--language=c", "-I../KTX-Software/lib/include", "-I../KTX-Software/external/dfdutils", "-DKTX_DOXYGEN_SKIP")).Generate("include/all.h");
scope ExampleGenerator(char8*[?]("--language=c", "-I../KTX-Software/lib/include", "-I../KTX-Software/external/dfdutils", "-DKTX_DOXYGEN_SKIP")).Generate("all.h");
return 0;
}
}