Full rewrite

This commit is contained in:
Ole Morud
2023-06-17 12:14:28 +02:00
committed by Ole Morud
parent e5fa743d85
commit 069f6b11dc
9 changed files with 176 additions and 272 deletions

15
CMakeLists.txt Normal file
View File

@@ -0,0 +1,15 @@
cmake_minimum_required(VERSION 3.16)
project("ArenaAllocator"
VERSION 1.0
LANGUAGES C
DESCRIPTION "Arena Allocator in C"
)
add_subdirectory(src)
if(CMAKE_PROJECT_NAME STREQUAL PROJECT_NAME)
message(STATUS "Building tests")
add_subdirectory(test)
endif()