CMake/Modules/VTKCompatibility.cmake

43 lines
1.7 KiB
CMake
Raw Normal View History

Simplify CMake per-source license notices Per-source copyright/license notice headers that spell out copyright holder names and years are hard to maintain and often out-of-date or plain wrong. Precise contributor information is already maintained automatically by the version control tool. Ultimately it is the receiver of a file who is responsible for determining its licensing status, and per-source notices are merely a convenience. Therefore it is simpler and more accurate for each source to have a generic notice of the license name and references to more detailed information on copyright holders and full license terms. Our `Copyright.txt` file now contains a list of Contributors whose names appeared source-level copyright notices. It also references version control history for more precise information. Therefore we no longer need to spell out the list of Contributors in each source file notice. Replace CMake per-source copyright/license notice headers with a short description of the license and links to `Copyright.txt` and online information available from "https://cmake.org/licensing". The online URL also handles cases of modules being copied out of our source into other projects, so we can drop our notices about replacing links with full license text. Run the `Utilities/Scripts/filter-notices.bash` script to perform the majority of the replacements mechanically. Manually fix up shebang lines and trailing newlines in a few files. Manually update the notices in a few files that the script does not handle.
2016-09-27 22:01:08 +03:00
# Distributed under the OSI-approved BSD 3-Clause License. See accompanying
# file Copyright.txt or https://cmake.org/licensing for details.
if(APPLE)
set(CMAKE_CXX_CREATE_SHARED_LIBRARY "${CMAKE_C_CREATE_SHARED_LIBRARY}")
set(CMAKE_CXX_CREATE_SHARED_MODULE "${CMAKE_C_CREATE_SHARED_MODULE}")
string( REGEX REPLACE "CMAKE_C_COMPILER"
2008-03-03 19:57:02 +03:00
CMAKE_CXX_COMPILER CMAKE_CXX_CREATE_SHARED_MODULE
2006-12-12 19:17:04 +03:00
"${CMAKE_CXX_CREATE_SHARED_MODULE}")
string( REGEX REPLACE "CMAKE_C_COMPILER"
2008-03-03 19:57:02 +03:00
CMAKE_CXX_COMPILER CMAKE_CXX_CREATE_SHARED_LIBRARY
2006-12-12 19:17:04 +03:00
"${CMAKE_CXX_CREATE_SHARED_LIBRARY}")
endif()
set(VTKFTGL_BINARY_DIR "${VTK_BINARY_DIR}/Utilities/ftgl"
2006-12-12 19:17:04 +03:00
CACHE INTERNAL "")
set(VTKFREETYPE_BINARY_DIR "${VTK_BINARY_DIR}/Utilities/freetype"
2006-12-12 19:17:04 +03:00
CACHE INTERNAL "")
set(VTKFTGL_SOURCE_DIR "${VTK_SOURCE_DIR}/Utilities/ftgl"
2006-12-12 19:17:04 +03:00
CACHE INTERNAL "")
set(VTKFREETYPE_SOURCE_DIR "${VTK_SOURCE_DIR}/Utilities/freetype"
2006-12-12 19:17:04 +03:00
CACHE INTERNAL "")
set(VTK_GLEXT_FILE "${VTK_SOURCE_DIR}/Utilities/ParseOGLExt/headers/glext.h"
2008-03-03 19:57:02 +03:00
CACHE FILEPATH
"Location of the OpenGL extensions header file (glext.h).")
set(VTK_GLXEXT_FILE
2006-12-12 19:17:04 +03:00
"${VTK_SOURCE_DIR}/Utilities/ParseOGLExt/headers/glxext.h" CACHE FILEPATH
"Location of the GLX extensions header file (glxext.h).")
set(VTK_WGLEXT_FILE "${VTK_SOURCE_DIR}/Utilities/ParseOGLExt/headers/wglext.h"
2006-12-12 19:17:04 +03:00
CACHE FILEPATH
"Location of the WGL extensions header file (wglext.h).")
# work around an old bug in VTK
set(TIFF_RIGHT_VERSION 1)
2006-12-12 19:17:04 +03:00
# for very old VTK (versions prior to 4.2)
macro(SOURCE_FILES)
message (FATAL_ERROR "You are trying to build a very old version of VTK (prior to VTK 4.2). To do this you need to use CMake 2.0 as it was the last version of CMake to support VTK 4.0.")
endmacro()
2006-12-13 20:11:14 +03:00