mundusnine / cLDtk

C99 loader for the LDtk map editor

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

cLDtk

C99 loader for the LDtk map editor

built using parson: https://github.com/kgabis/parson

LDtk map editor: https://ldtk.io/

How to compile for GCC

gcc -c cLDtk.c parson.c -std=c99
ar rvs libcLDtk.a cLDtk.o parson.o
gcc example.c -o example.exe libcLDtk.a -std=c99

How to compile for DJGPP(MS-DOS)

gcc -c cLDtk.c parson.c -std=c99
ar rvs libcLDtk.a cLDtk.o parson.o
gcc example.c -o example.exe libcLDtk.a -std=c99 -lalleg

About

C99 loader for the LDtk map editor

License:MIT License


Languages

Language:C 100.0%