Initial commit

This is working repository now. I had to clean this up due to
my f_ups, that made this simple repo around 200MB large.

Signed-off-by: Piotr Krygier <piotrkrygier@everyonecancode@xyz>
This commit is contained in:
Piotr Krygier
2022-06-28 09:54:41 +02:00
committed by Piotr Krygier
commit 493afb05e6
56 changed files with 5574 additions and 0 deletions
+23
View File
@@ -0,0 +1,23 @@
rse_utilities_srcs = [
'src/file_utils.c'
]
cc = meson.get_compiler('c')
sdl3_dep = dependency('sdl3',
version : '>=3.4.0')
stb_dep = dependency('stb',
version : '>=2.30.0')
m_dep = cc.find_library('m')
rse_utilities_lib = shared_library(
'rse_utilities',
rse_utilities_srcs,
include_directories : ['.'],
dependencies : [
sdl3_dep,
stb_dep,
m_dep,
],
install : true
)