feat(memory): add SMemAlloc, SMemFree, and SMemReAlloc

This commit is contained in:
fallenoak 2020-09-07 17:00:14 -05:00
parent e128bd2554
commit ec1c5c8844
3 changed files with 86 additions and 0 deletions

View file

@ -0,0 +1,5 @@
file(GLOB STORM_SOURCES "*.cpp")
add_library(storm STATIC
${STORM_SOURCES}
)