Files
test/intern/memutil/CMakeLists.txt

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

34 lines
592 B
CMake
Raw Normal View History

# SPDX-FileCopyrightText: 2006 Blender Authors
#
# SPDX-License-Identifier: GPL-2.0-or-later
set(INC
2024-07-29 11:47:04 +02:00
PUBLIC .
..
)
set(INC_SYS
)
2010-09-18 03:55:56 +00:00
set(SRC
intern/MEM_CacheLimiterC-Api.cpp
intern/MEM_RefCountedC-Api.cpp
2024-07-29 11:47:04 +02:00
intern/MEM_alloc_string_storage.cc
MEM_Allocator.h
MEM_CacheLimiter.h
MEM_CacheLimiterC-Api.h
MEM_RefCounted.h
MEM_RefCountedC-Api.h
2024-07-29 11:47:04 +02:00
MEM_alloc_string_storage.hh
2010-09-18 03:55:56 +00:00
)
set(LIB
PRIVATE bf::blenlib
2024-07-29 11:47:04 +02:00
PRIVATE bf::intern::guardedalloc
)
blender_add_lib(bf_intern_memutil "${SRC}" "${INC}" "${INC_SYS}" "${LIB}")
2024-07-29 11:47:04 +02:00
add_library(bf::intern::memutil ALIAS bf_intern_memutil)