summaryrefslogtreecommitdiff
path: root/libheap/CMakeLists.txt
blob: 775b5cddcba69d8e75edce3effea5161ea894fe8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# libheap/CMakeLists.txt - A memory allocator
#
# Copyright (C) 2025  Luke T. Shumaker <lukeshu@lukeshu.com>
# SPDX-License-Identifier: AGPL-3.0-or-later

add_library(libheap INTERFACE)
target_include_directories(libheap PUBLIC INTERFACE ${CMAKE_CURRENT_SOURCE_DIR}/include)
target_link_libraries(libheap INTERFACE
	libcr
)
target_sources(libheap INTERFACE
	malloc.c
)

add_lib_test(libheap test_heap)