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:
authorAnkit Meel <ankitjmeel@gmail.com>2021-04-02 11:18:22 +0300
committerAnkit Meel <ankitjmeel@gmail.com>2021-04-02 11:18:22 +0300
commit6578f9d1e9981f2c52824654fb6ad267ba8ca3b4 (patch)
tree2ceff59c835e9b1c17fd4a0c4435aa4192ec35d3 /source/blender/modifiers/CMakeLists.txt
parenta0e1080428abb991c443a40b29d2ae3948eb4a56 (diff)
Modifiers: Fix build error with GMP
Diffstat (limited to 'source/blender/modifiers/CMakeLists.txt')
-rw-r--r--source/blender/modifiers/CMakeLists.txt8
1 files changed, 8 insertions, 0 deletions
diff --git a/source/blender/modifiers/CMakeLists.txt b/source/blender/modifiers/CMakeLists.txt
index 5fc88846527..54caaed9231 100644
--- a/source/blender/modifiers/CMakeLists.txt
+++ b/source/blender/modifiers/CMakeLists.txt
@@ -181,6 +181,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)