Changeset View
Changeset View
Standalone View
Standalone View
source/blender/nodes/texture/CMakeLists.txt
| # SPDX-License-Identifier: GPL-2.0-or-later | # SPDX-License-Identifier: GPL-2.0-or-later | ||||
| set(INC | set(INC | ||||
| . | . | ||||
| ../ | ../ | ||||
| ../intern | ../intern | ||||
| ../../editors/include | ../../editors/include | ||||
| ../../blenkernel | ../../blenkernel | ||||
| ../../blenlib | ../../blenlib | ||||
| ../../blentranslation | ../../blentranslation | ||||
| ../../functions | |||||
| ../../depsgraph | ../../depsgraph | ||||
| ../../imbuf | ../../imbuf | ||||
| ../../makesdna | ../../makesdna | ||||
| ../../makesrna | ../../makesrna | ||||
| ../../render | ../../render | ||||
| ../../windowmanager | ../../windowmanager | ||||
| ../../../../intern/guardedalloc | ../../../../intern/guardedalloc | ||||
| # RNA_prototypes.h | # RNA_prototypes.h | ||||
| Show All 22 Lines | set(SRC | ||||
| nodes/node_texture_rotate.c | nodes/node_texture_rotate.c | ||||
| nodes/node_texture_scale.c | nodes/node_texture_scale.c | ||||
| nodes/node_texture_separate_color.c | nodes/node_texture_separate_color.c | ||||
| nodes/node_texture_texture.c | nodes/node_texture_texture.c | ||||
| nodes/node_texture_translate.c | nodes/node_texture_translate.c | ||||
| nodes/node_texture_valToNor.c | nodes/node_texture_valToNor.c | ||||
| nodes/node_texture_valToRgb.c | nodes/node_texture_valToRgb.c | ||||
| nodes/node_texture_viewer.c | nodes/node_texture_viewer.c | ||||
| node_texture_evaluate.cc | |||||
| node_texture_tree.c | node_texture_tree.c | ||||
| node_texture_util.c | node_texture_util.c | ||||
| node_texture_util.h | node_texture_util.h | ||||
| ) | ) | ||||
| set(LIB | set(LIB | ||||
| bf_nodes | bf_nodes | ||||
| bf_functions | |||||
| ) | ) | ||||
| if(WITH_PYTHON) | if(WITH_PYTHON) | ||||
| list(APPEND INC | list(APPEND INC | ||||
| ../../python | ../../python | ||||
| ) | ) | ||||
| list(APPEND INC_SYS | list(APPEND INC_SYS | ||||
| ${PYTHON_INCLUDE_DIRS} | ${PYTHON_INCLUDE_DIRS} | ||||
| Show All 13 Lines | |||||