GMP/CMake: Remove duplicate GMP search logic.

Original was added in rB83f8223543f58c3b0881a03b6e9ddffff91.
Duplicate was added in the merge rB9e09b5c418c0a436e3c84ccf.

Reviewed By: sergey

Differential Revision: https://developer.blender.org/D8822
This commit is contained in:
Ankit Meel 2020-09-07 01:31:35 +05:30
parent 4786719dbd
commit f1fee433be
Notes: blender-bot 2023-02-14 08:42:54 +01:00
Referenced by commit fdf77341cd, CMake: Remove duplicate WITH_GMP options.
2 changed files with 0 additions and 18 deletions

View File

@ -417,15 +417,6 @@ if(WITH_TBB)
find_package(TBB)
endif()
if(WITH_GMP)
find_package(GMP)
if(NOT GMP_FOUND)
set(WITH_GMP OFF)
message(STATUS "GMP not found")
endif()
endif()
if(WITH_POTRACE)
find_package(Potrace)
if(NOT POTRACE_FOUND)

View File

@ -434,15 +434,6 @@ if(WITH_TBB)
find_package_wrapper(TBB)
endif()
if(WITH_GMP)
find_package(GMP)
if(NOT GMP_FOUND)
set(WITH_GMP OFF)
message(STATUS "GMP not found")
endif()
endif()
if(WITH_XR_OPENXR)
find_package(XR_OpenXR_SDK)
if(NOT XR_OPENXR_SDK_FOUND)