BLI_task.hh has newer/better equivalents now. Pull Request: https://projects.blender.org/blender/blender/pulls/115539
22 lines
384 B
CMake
22 lines
384 B
CMake
# SPDX-FileCopyrightText: 2014 Blender Authors
|
|
#
|
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
set(INC
|
|
.
|
|
..
|
|
../..
|
|
)
|
|
|
|
set(INC_SYS
|
|
)
|
|
|
|
set(LIB
|
|
PRIVATE bf_blenlib
|
|
PRIVATE bf::dna
|
|
PRIVATE PRIVATE bf::intern::guardedalloc
|
|
PRIVATE bf::intern::atomic
|
|
)
|
|
|
|
blender_add_performancetest_executable(BLI_ghash_performance "BLI_ghash_performance_test.cc" "${INC}" "${INC_SYS}" "${LIB}")
|