a bit of stuff, time to add spirv-link into this project

This commit is contained in:
2026-02-23 01:42:17 +02:00
parent c00ecf4081
commit 003106a4d7
48 changed files with 626 additions and 752 deletions

15
buildcfg.cpp Normal file
View File

@@ -0,0 +1,15 @@
#include "helper.h"
DECLARE_BUILD_STAGE(config)
{
if (Target_t::DefaultTarget().kernel == TARGET_KERNEL_IOS)
{
ADD_OUTPUT_VALUE("static", "true");
}
else
{
ADD_OUTPUT_VALUE("static", "false");
}
ADD_OUTPUT_VALUE("static", "true");
return 0;
}