Fix compile error: Missing include paths

rB8d9fd0427dd6 added the `WITH_GMP` definition but did not append the
include paths.
This commit is contained in:
Falk David 2021-04-13 09:47:52 +02:00
parent e9c548c3c3
commit 721ff6ad12
1 changed files with 8 additions and 0 deletions

View File

@ -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)