started working on ini parser

This commit is contained in:
2025-08-20 01:27:25 +03:00
parent 5635cd1d69
commit eff681ca33
47 changed files with 1465 additions and 112 deletions

View File

@@ -5,10 +5,10 @@
#include "tier1/commandline.h"
CUtlVector<CUtlString> MaterialSystem_CompiledFiles = {
"materialsystem/materialsystem.cpp",
"materialsystem/vulkan/rendercontext.cpp",
"materialsystem/vulkan/material.cpp",
"materialsystem/vulkan/materialsystem.cpp",
"materialsystem/vulkan/shader.cpp",
"materialsystem/vulkan/vulkan_state.cpp",
"external/volk/volk.c",
};
CUtlString material_lib;
@@ -23,6 +23,7 @@ DECLARE_BUILD_STAGE(MaterialSystem)
compileProject.bFPIC = true;
ldProject = ccompiler->Compile(&compileProject);
ldProject.linkType = ELINK_STATIC_LIBRARY;
ldProject.libraries = { "vulkan" };
CUtlString outputProject = linker->Link(&ldProject);
material_lib = outputProject;