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:
Diffstat (limited to 'extern/glew/CMakeLists.txt')
-rw-r--r--extern/glew/CMakeLists.txt54
1 files changed, 0 insertions, 54 deletions
diff --git a/extern/glew/CMakeLists.txt b/extern/glew/CMakeLists.txt
deleted file mode 100644
index ce51c8b2f7b..00000000000
--- a/extern/glew/CMakeLists.txt
+++ /dev/null
@@ -1,54 +0,0 @@
-# SPDX-License-Identifier: GPL-2.0-or-later
-# Copyright 2006 Blender Foundation. All rights reserved.
-
-# avoid noisy warnings
-if(CMAKE_COMPILER_IS_GNUCC OR CMAKE_C_COMPILER_ID MATCHES "Clang")
- add_c_flag(
- "-Wno-strict-prototypes"
- )
-endif()
-if(CMAKE_COMPILER_IS_GNUCC AND (NOT "${CMAKE_C_COMPILER_VERSION}" VERSION_LESS "12.1"))
- add_c_flag(
- "-Wno-address"
- )
-endif()
-
-# MSVC's inliner is not having a happy time with glewIsSupported
-# causing this to be one of the most expensive things to build
-# in blender. Optimize for size rather than speed sidesteps this
-# problem, more details at
-# https://developercommunity.visualstudio.com/content/problem/732941/slow-compilation-of-glewc-for-visual-studio-2019-x.html
-
-if(MSVC)
- add_c_flag("/Os")
-endif()
-
-set(INC
- include
-)
-
-set(INC_SYS
-
-)
-
-if(UNIX)
- list(APPEND INC_SYS
- ${X11_X11_INCLUDE_PATH}
- )
-endif()
-
-set(SRC
- src/glew.c
-
- include/GL/eglew.h
- include/GL/glew.h
- include/GL/glxew.h
- include/GL/wglew.h
-)
-
-set(LIB
-)
-
-add_definitions(${GL_DEFINITIONS})
-
-blender_add_lib(extern_glew "${SRC}" "${INC}" "${INC_SYS}" "${LIB}")