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
path: root/source
diff options
context:
space:
mode:
authorFalk David <falkdavid@gmx.de>2021-04-13 10:47:52 +0300
committerFalk David <falkdavid@gmx.de>2021-04-13 10:47:58 +0300
commit721ff6ad12266d5c8cf7406696c948089d17d64e (patch)
treeed723256422d720f051eb70b8a9852944e54db52 /source
parente9c548c3c3193f3a9cd45d78780efd8c9e2e9177 (diff)
Fix compile error: Missing include paths
rB8d9fd0427dd6 added the `WITH_GMP` definition but did not append the include paths.
Diffstat (limited to 'source')
-rw-r--r--source/blender/nodes/CMakeLists.txt8
1 files changed, 8 insertions, 0 deletions
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)