Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrecht Van Lommel <brecht@blender.org>2021-12-18 07:43:19 +0300
committerBrecht Van Lommel <brecht@blender.org>2021-12-18 07:53:38 +0300
commit3471b0016cdf7533d345cb39036cc2401860d5f0 (patch)
tree4bde1700dfb572e88aec08f32302fe9d4926d2d5
parent214a56ce8c67bb7a3af45aaafca8aa4a5ec85129 (diff)
Fix T94215: compositer denoise node UI wrongly shows as disabled
After recent refactoring in 4e98d974b596.
-rw-r--r--source/blender/nodes/CMakeLists.txt4
1 files changed, 4 insertions, 0 deletions
diff --git a/source/blender/nodes/CMakeLists.txt b/source/blender/nodes/CMakeLists.txt
index 5f61d13a3af..2e2ff874f20 100644
--- a/source/blender/nodes/CMakeLists.txt
+++ b/source/blender/nodes/CMakeLists.txt
@@ -316,4 +316,8 @@ if(WITH_OPENVDB)
add_definitions(-DWITH_OPENVDB ${OPENVDB_DEFINITIONS})
endif()
+if(WITH_OPENIMAGEDENOISE)
+ add_definitions(-DWITH_OPENIMAGEDENOISE)
+endif()
+
blender_add_lib(bf_nodes "${SRC}" "${INC}" "${INC_SYS}" "${LIB}")