Add lib and build script (Windows Only)

This commit is contained in:
gingerBill
2025-06-20 08:38:20 +01:00
parent 63f1c5139a
commit 61edcdbfc5
3 changed files with 13 additions and 0 deletions

Binary file not shown.

8
vendor/kb_text_shape/src/build.bat vendored Normal file
View File

@@ -0,0 +1,8 @@
@echo off
if not exist "..\lib" mkdir ..\lib
cl -nologo -MT -TC -O2 -c kb_text_shape.c
lib -nologo kb_text_shape.obj -out:..\lib\kb_text_shape.lib
del *.obj

View File

@@ -0,0 +1,5 @@
#include <stdlib.h>
#include <stdint.h>
#define KB_TEXT_SHAPE_IMPLEMENTATION
#include "kb_text_shape.h"