From 721ff6ad12266d5c8cf7406696c948089d17d64e Mon Sep 17 00:00:00 2001 From: Falk David Date: Tue, 13 Apr 2021 09:47:52 +0200 Subject: Fix compile error: Missing include paths rB8d9fd0427dd6 added the `WITH_GMP` definition but did not append the include paths. --- source/blender/nodes/CMakeLists.txt | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'source') diff --git a/source/blender/nodes/CMakeLists.txt b/source/blender/nodes/CMakeLists.txt index f9331d8aa7f..8a426042039 100644 --- a/source/blender/nodes/CMakeLists.txt +++ b/source/blender/nodes/CMakeLists.txt @@ -394,6 +394,14 @@ endif() if(WITH_GMP) add_definitions(-DWITH_GMP) + + list(APPEND INC_SYS + ${GMP_INCLUDE_DIRS} + ) + + list(APPEND LIB + ${GMP_LIBRARIES} + ) endif() if(WITH_OPENVDB) -- cgit v1.2.3