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:
authorCampbell Barton <ideasman42@gmail.com>2020-02-05 17:33:23 +0300
committerCampbell Barton <ideasman42@gmail.com>2020-02-05 17:33:23 +0300
commitd2c0df28424b93dbcc1a92423e0b68d2e9590945 (patch)
tree81cc8273fc7ff46b9146faca02990982f8a83603 /CMakeLists.txt
parentbe70fcd7f23d14f4f410b5662f1f884a68581587 (diff)
parent6d10c2406297cf93238129b5e704a7ba7e8ce3bc (diff)
Merge branch 'blender-v2.82-release'
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r--CMakeLists.txt55
1 files changed, 0 insertions, 55 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index bbca47f26c1..509de9943e2 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -793,61 +793,6 @@ if(NOT CMAKE_BUILD_TYPE MATCHES "Release")
endif()
endif()
-#-----------------------------------------------------------------------------
-# Platform specifics
-
-if(WITH_X11)
- find_package(X11 REQUIRED)
-
- find_path(X11_XF86keysym_INCLUDE_PATH X11/XF86keysym.h ${X11_INC_SEARCH_PATH})
- mark_as_advanced(X11_XF86keysym_INCLUDE_PATH)
-
- list(APPEND PLATFORM_LINKLIBS ${X11_X11_LIB})
-
- if(WITH_X11_XINPUT)
- if(X11_Xinput_LIB)
- list(APPEND PLATFORM_LINKLIBS ${X11_Xinput_LIB})
- else()
- message(FATAL_ERROR "LibXi not found. Disable WITH_X11_XINPUT if you
- want to build without tablet support")
- endif()
- endif()
-
- if(WITH_X11_XF86VMODE)
- # XXX, why doesn't cmake make this available?
- find_library(X11_Xxf86vmode_LIB Xxf86vm ${X11_LIB_SEARCH_PATH})
- mark_as_advanced(X11_Xxf86vmode_LIB)
- if(X11_Xxf86vmode_LIB)
- list(APPEND PLATFORM_LINKLIBS ${X11_Xxf86vmode_LIB})
- else()
- message(FATAL_ERROR "libXxf86vm not found. Disable WITH_X11_XF86VMODE if you
- want to build without")
- endif()
- endif()
-
- if(WITH_X11_XFIXES)
- if(X11_Xfixes_LIB)
- list(APPEND PLATFORM_LINKLIBS ${X11_Xfixes_LIB})
- else()
- message(FATAL_ERROR "libXfixes not found. Disable WITH_X11_XFIXES if you
- want to build without")
- endif()
- endif()
-
- if(WITH_X11_ALPHA)
- find_library(X11_Xrender_LIB Xrender ${X11_LIB_SEARCH_PATH})
- mark_as_advanced(X11_Xrender_LIB)
- if(X11_Xrender_LIB)
- list(APPEND PLATFORM_LINKLIBS ${X11_Xrender_LIB})
- else()
- message(FATAL_ERROR "libXrender not found. Disable WITH_X11_ALPHA if you
- want to build without")
- endif()
- endif()
-
-endif()
-
-
# ----------------------------------------------------------------------------
# Main Platform Checks
#