2016-08-09 15:19:11 +02:00
|
|
|
# ***** BEGIN GPL LICENSE BLOCK *****
|
|
|
|
#
|
|
|
|
# This program is free software; you can redistribute it and/or
|
|
|
|
# modify it under the terms of the GNU General Public License
|
|
|
|
# as published by the Free Software Foundation; either version 2
|
|
|
|
# of the License, or (at your option) any later version.
|
|
|
|
#
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with this program; if not, write to the Free Software Foundation,
|
|
|
|
# Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
#
|
|
|
|
# The Original Code is Copyright (C) 2016, Blender Foundation
|
|
|
|
# All rights reserved.
|
|
|
|
# ***** END GPL LICENSE BLOCK *****
|
|
|
|
|
|
|
|
# Libraries configuration for any *nix system including Linux and Unix.
|
|
|
|
|
2017-07-31 19:04:18 +02:00
|
|
|
# Detect precompiled library directory
|
2018-08-29 16:15:54 +02:00
|
|
|
if(NOT DEFINED LIBDIR)
|
2019-10-09 17:14:00 +02:00
|
|
|
# Path to a locally compiled libraries.
|
2019-04-17 06:35:54 +02:00
|
|
|
set(LIBDIR_NAME ${CMAKE_SYSTEM_NAME}_${CMAKE_SYSTEM_PROCESSOR})
|
|
|
|
string(TOLOWER ${LIBDIR_NAME} LIBDIR_NAME)
|
2019-10-09 17:14:00 +02:00
|
|
|
set(LIBDIR_NATIVE_ABI ${CMAKE_SOURCE_DIR}/../lib/${LIBDIR_NAME})
|
|
|
|
|
|
|
|
# Path to precompiled libraries with known CentOS 7 ABI.
|
|
|
|
set(LIBDIR_CENTOS7_ABI ${CMAKE_SOURCE_DIR}/../lib/linux_centos7_x86_64)
|
|
|
|
|
|
|
|
# Choose the best suitable libraries.
|
|
|
|
if(EXISTS ${LIBDIR_NATIVE_ABI})
|
|
|
|
set(LIBDIR ${LIBDIR_NATIVE_ABI})
|
|
|
|
elseif(EXISTS ${LIBDIR_CENTOS7_ABI})
|
|
|
|
set(LIBDIR ${LIBDIR_CENTOS7_ABI})
|
|
|
|
set(WITH_CXX11_ABI OFF)
|
|
|
|
endif()
|
|
|
|
|
|
|
|
# Avoid namespace pollustion.
|
|
|
|
unset(LIBDIR_NATIVE_ABI)
|
|
|
|
unset(LIBDIR_CENTOS7_ABI)
|
2018-08-29 16:15:54 +02:00
|
|
|
endif()
|
2017-07-31 19:04:18 +02:00
|
|
|
|
|
|
|
if(EXISTS ${LIBDIR})
|
2019-10-09 17:14:00 +02:00
|
|
|
message(STATUS "Using pre-compiled LIBDIR: ${LIBDIR}")
|
|
|
|
|
2019-04-17 06:35:54 +02:00
|
|
|
file(GLOB LIB_SUBDIRS ${LIBDIR}/*)
|
|
|
|
# NOTE: Make sure "proper" compiled zlib comes first before the one
|
|
|
|
# which is a part of OpenCollada. They have different ABI, and we
|
|
|
|
# do need to use the official one.
|
|
|
|
set(CMAKE_PREFIX_PATH ${LIBDIR}/zlib ${LIB_SUBDIRS})
|
|
|
|
set(WITH_STATIC_LIBS ON)
|
|
|
|
set(WITH_OPENMP_STATIC ON)
|
2020-01-22 22:38:26 -07:00
|
|
|
set(Boost_NO_BOOST_CMAKE ON)
|
|
|
|
set(BOOST_ROOT ${LIBDIR}/boost)
|
|
|
|
set(BOOST_LIBRARYDIR ${LIBDIR}/boost/lib)
|
|
|
|
set(Boost_NO_SYSTEM_PATHS ON)
|
2017-07-31 19:04:18 +02:00
|
|
|
endif()
|
|
|
|
|
2019-03-02 02:53:09 +01:00
|
|
|
if(WITH_STATIC_LIBS)
|
2019-04-17 06:35:54 +02:00
|
|
|
set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -static-libstdc++")
|
2019-03-02 02:53:09 +01:00
|
|
|
endif()
|
|
|
|
|
2017-07-31 19:04:18 +02:00
|
|
|
# Wrapper to prefer static libraries
|
2016-08-09 15:19:11 +02:00
|
|
|
macro(find_package_wrapper)
|
2019-04-17 06:35:54 +02:00
|
|
|
if(WITH_STATIC_LIBS)
|
|
|
|
find_package_static(${ARGV})
|
|
|
|
else()
|
|
|
|
find_package(${ARGV})
|
|
|
|
endif()
|
2016-08-09 15:19:11 +02:00
|
|
|
endmacro()
|
|
|
|
|
2020-02-20 22:09:14 -07:00
|
|
|
# ----------------------------------------------------------------------------
|
|
|
|
# Precompiled Libraries
|
|
|
|
#
|
|
|
|
# These are libraries that may be precompiled. For this we disable searching in
|
|
|
|
# the system directories so that we don't accidentally use them instead.
|
|
|
|
|
|
|
|
if(EXISTS ${LIBDIR})
|
|
|
|
without_system_libs_begin()
|
|
|
|
endif()
|
|
|
|
|
2016-08-09 15:19:11 +02:00
|
|
|
find_package_wrapper(JPEG REQUIRED)
|
|
|
|
find_package_wrapper(PNG REQUIRED)
|
|
|
|
find_package_wrapper(ZLIB REQUIRED)
|
|
|
|
find_package_wrapper(Freetype REQUIRED)
|
|
|
|
|
|
|
|
if(WITH_PYTHON)
|
2019-04-17 06:35:54 +02:00
|
|
|
# No way to set py35, remove for now.
|
|
|
|
# find_package(PythonLibs)
|
2016-08-09 15:19:11 +02:00
|
|
|
|
2019-04-17 06:35:54 +02:00
|
|
|
# Use our own instead, since without py is such a rare case,
|
|
|
|
# require this package
|
|
|
|
# XXX Linking errors with debian static python :/
|
|
|
|
# find_package_wrapper(PythonLibsUnix REQUIRED)
|
|
|
|
find_package(PythonLibsUnix REQUIRED)
|
2016-08-09 15:19:11 +02:00
|
|
|
endif()
|
|
|
|
|
|
|
|
if(WITH_IMAGE_OPENEXR)
|
2019-04-17 06:35:54 +02:00
|
|
|
find_package_wrapper(OpenEXR) # our own module
|
|
|
|
if(NOT OPENEXR_FOUND)
|
|
|
|
set(WITH_IMAGE_OPENEXR OFF)
|
|
|
|
endif()
|
2016-08-09 15:19:11 +02:00
|
|
|
endif()
|
|
|
|
|
|
|
|
if(WITH_IMAGE_OPENJPEG)
|
2019-04-17 06:35:54 +02:00
|
|
|
find_package_wrapper(OpenJPEG)
|
|
|
|
if(NOT OPENJPEG_FOUND)
|
|
|
|
set(WITH_IMAGE_OPENJPEG OFF)
|
|
|
|
endif()
|
2016-08-09 15:19:11 +02:00
|
|
|
endif()
|
|
|
|
|
|
|
|
if(WITH_IMAGE_TIFF)
|
2019-04-17 06:35:54 +02:00
|
|
|
# XXX Linking errors with debian static tiff :/
|
|
|
|
# find_package_wrapper(TIFF)
|
|
|
|
find_package(TIFF)
|
|
|
|
if(NOT TIFF_FOUND)
|
|
|
|
set(WITH_IMAGE_TIFF OFF)
|
|
|
|
endif()
|
2016-08-09 15:19:11 +02:00
|
|
|
endif()
|
|
|
|
|
|
|
|
if(WITH_OPENAL)
|
2019-04-17 06:35:54 +02:00
|
|
|
find_package_wrapper(OpenAL)
|
|
|
|
if(NOT OPENAL_FOUND)
|
|
|
|
set(WITH_OPENAL OFF)
|
|
|
|
endif()
|
2016-08-09 15:19:11 +02:00
|
|
|
endif()
|
|
|
|
|
|
|
|
if(WITH_SDL)
|
2019-04-17 06:35:54 +02:00
|
|
|
if(WITH_SDL_DYNLOAD)
|
|
|
|
set(SDL_INCLUDE_DIR "${CMAKE_CURRENT_SOURCE_DIR}/extern/sdlew/include/SDL2")
|
|
|
|
set(SDL_LIBRARY)
|
|
|
|
else()
|
|
|
|
find_package_wrapper(SDL2)
|
|
|
|
if(SDL2_FOUND)
|
|
|
|
# Use same names for both versions of SDL until we move to 2.x.
|
|
|
|
set(SDL_INCLUDE_DIR "${SDL2_INCLUDE_DIR}")
|
|
|
|
set(SDL_LIBRARY "${SDL2_LIBRARY}")
|
|
|
|
set(SDL_FOUND "${SDL2_FOUND}")
|
|
|
|
else()
|
|
|
|
find_package_wrapper(SDL)
|
|
|
|
endif()
|
|
|
|
mark_as_advanced(
|
|
|
|
SDL_INCLUDE_DIR
|
|
|
|
SDL_LIBRARY
|
|
|
|
)
|
|
|
|
# unset(SDLMAIN_LIBRARY CACHE)
|
|
|
|
if(NOT SDL_FOUND)
|
|
|
|
set(WITH_SDL OFF)
|
|
|
|
endif()
|
|
|
|
endif()
|
2016-08-09 15:19:11 +02:00
|
|
|
endif()
|
|
|
|
|
|
|
|
# Codecs
|
|
|
|
if(WITH_CODEC_SNDFILE)
|
2019-04-17 06:35:54 +02:00
|
|
|
find_package_wrapper(SndFile)
|
2019-07-19 09:14:15 +10:00
|
|
|
if(NOT SNDFILE_FOUND)
|
2019-04-17 06:35:54 +02:00
|
|
|
set(WITH_CODEC_SNDFILE OFF)
|
|
|
|
endif()
|
2016-08-09 15:19:11 +02:00
|
|
|
endif()
|
|
|
|
|
|
|
|
if(WITH_CODEC_FFMPEG)
|
2019-04-17 06:35:54 +02:00
|
|
|
if(EXISTS ${LIBDIR})
|
|
|
|
# For precompiled lib directory, all ffmpeg dependencies are in the same folder
|
|
|
|
file(GLOB ffmpeg_libs ${LIBDIR}/ffmpeg/lib/*.a ${LIBDIR}/sndfile/lib/*.a)
|
|
|
|
set(FFMPEG ${LIBDIR}/ffmpeg CACHE PATH "FFMPEG Directory")
|
|
|
|
set(FFMPEG_LIBRARIES ${ffmpeg_libs} ${ffmpeg_libs} CACHE STRING "FFMPEG Libraries")
|
|
|
|
else()
|
|
|
|
set(FFMPEG /usr CACHE PATH "FFMPEG Directory")
|
|
|
|
set(FFMPEG_LIBRARIES avformat avcodec avutil avdevice swscale CACHE STRING "FFMPEG Libraries")
|
|
|
|
endif()
|
2016-08-09 15:19:11 +02:00
|
|
|
|
2019-04-17 06:35:54 +02:00
|
|
|
mark_as_advanced(FFMPEG)
|
2016-08-09 15:19:11 +02:00
|
|
|
|
2019-04-17 06:35:54 +02:00
|
|
|
# lame, but until we have proper find module for ffmpeg
|
|
|
|
set(FFMPEG_INCLUDE_DIRS ${FFMPEG}/include)
|
|
|
|
if(EXISTS "${FFMPEG}/include/ffmpeg/")
|
|
|
|
list(APPEND FFMPEG_INCLUDE_DIRS "${FFMPEG}/include/ffmpeg")
|
|
|
|
endif()
|
|
|
|
# end lameness
|
2016-08-09 15:19:11 +02:00
|
|
|
|
2019-04-17 06:35:54 +02:00
|
|
|
mark_as_advanced(FFMPEG_LIBRARIES)
|
|
|
|
set(FFMPEG_LIBPATH ${FFMPEG}/lib)
|
2016-08-09 15:19:11 +02:00
|
|
|
endif()
|
|
|
|
|
|
|
|
if(WITH_FFTW3)
|
2019-04-17 06:35:54 +02:00
|
|
|
find_package_wrapper(Fftw3)
|
|
|
|
if(NOT FFTW3_FOUND)
|
|
|
|
set(WITH_FFTW3 OFF)
|
|
|
|
endif()
|
2016-08-09 15:19:11 +02:00
|
|
|
endif()
|
|
|
|
|
|
|
|
if(WITH_OPENCOLLADA)
|
2019-04-17 06:35:54 +02:00
|
|
|
find_package_wrapper(OpenCOLLADA)
|
|
|
|
if(OPENCOLLADA_FOUND)
|
2020-03-27 14:24:52 +01:00
|
|
|
if(WITH_STATIC_LIBS)
|
2020-04-02 22:05:03 +02:00
|
|
|
# PCRE is bundled with OpenCollada without headers, so can't use
|
|
|
|
# find_package reliably to detect it.
|
|
|
|
set(PCRE_LIBRARIES ${LIBDIR}/opencollada/lib/libpcre.a)
|
2020-03-27 14:24:52 +01:00
|
|
|
else()
|
|
|
|
find_package_wrapper(PCRE)
|
|
|
|
endif()
|
2020-04-02 18:52:22 +02:00
|
|
|
find_package_wrapper(XML2)
|
2019-04-17 06:35:54 +02:00
|
|
|
else()
|
|
|
|
set(WITH_OPENCOLLADA OFF)
|
|
|
|
endif()
|
2016-08-09 15:19:11 +02:00
|
|
|
endif()
|
|
|
|
|
|
|
|
if(WITH_MEM_JEMALLOC)
|
2019-04-17 06:35:54 +02:00
|
|
|
find_package_wrapper(JeMalloc)
|
|
|
|
if(NOT JEMALLOC_FOUND)
|
|
|
|
set(WITH_MEM_JEMALLOC OFF)
|
|
|
|
endif()
|
2016-08-09 15:19:11 +02:00
|
|
|
endif()
|
|
|
|
|
|
|
|
if(WITH_INPUT_NDOF)
|
2019-04-17 06:35:54 +02:00
|
|
|
find_package_wrapper(Spacenav)
|
|
|
|
if(SPACENAV_FOUND)
|
|
|
|
# use generic names within blenders buildsystem.
|
|
|
|
set(NDOF_INCLUDE_DIRS ${SPACENAV_INCLUDE_DIRS})
|
|
|
|
set(NDOF_LIBRARIES ${SPACENAV_LIBRARIES})
|
|
|
|
else()
|
|
|
|
set(WITH_INPUT_NDOF OFF)
|
|
|
|
endif()
|
2016-08-09 15:19:11 +02:00
|
|
|
endif()
|
|
|
|
|
|
|
|
if(WITH_CYCLES_OSL)
|
2019-04-17 06:35:54 +02:00
|
|
|
set(CYCLES_OSL ${LIBDIR}/osl CACHE PATH "Path to OpenShadingLanguage installation")
|
|
|
|
if(NOT OSL_ROOT)
|
|
|
|
set(OSL_ROOT ${CYCLES_OSL})
|
|
|
|
endif()
|
|
|
|
find_package_wrapper(OpenShadingLanguage)
|
|
|
|
if(OSL_FOUND)
|
|
|
|
if(${OSL_LIBRARY_VERSION_MAJOR} EQUAL "1" AND ${OSL_LIBRARY_VERSION_MINOR} LESS "6")
|
|
|
|
# Note: --whole-archive is needed to force loading of all symbols in liboslexec,
|
|
|
|
# otherwise LLVM is missing the osl_allocate_closure_component function
|
|
|
|
set(OSL_LIBRARIES
|
|
|
|
${OSL_OSLCOMP_LIBRARY}
|
|
|
|
-Wl,--whole-archive ${OSL_OSLEXEC_LIBRARY}
|
|
|
|
-Wl,--no-whole-archive ${OSL_OSLQUERY_LIBRARY}
|
|
|
|
)
|
|
|
|
endif()
|
|
|
|
else()
|
|
|
|
message(STATUS "OSL not found, disabling it from Cycles")
|
|
|
|
set(WITH_CYCLES_OSL OFF)
|
|
|
|
endif()
|
2016-08-09 15:19:11 +02:00
|
|
|
endif()
|
|
|
|
|
|
|
|
if(WITH_OPENVDB)
|
2019-04-17 06:35:54 +02:00
|
|
|
find_package_wrapper(OpenVDB)
|
|
|
|
find_package_wrapper(Blosc)
|
2019-10-09 16:44:29 +02:00
|
|
|
if(NOT OPENVDB_FOUND)
|
2019-04-17 06:35:54 +02:00
|
|
|
set(WITH_OPENVDB OFF)
|
|
|
|
set(WITH_OPENVDB_BLOSC OFF)
|
|
|
|
message(STATUS "OpenVDB not found, disabling it")
|
|
|
|
elseif(NOT BLOSC_FOUND)
|
|
|
|
set(WITH_OPENVDB_BLOSC OFF)
|
|
|
|
message(STATUS "Blosc not found, disabling it for OpenVBD")
|
|
|
|
endif()
|
2016-08-09 15:19:11 +02:00
|
|
|
endif()
|
|
|
|
|
|
|
|
if(WITH_ALEMBIC)
|
2019-04-17 06:35:54 +02:00
|
|
|
find_package_wrapper(Alembic)
|
2016-08-09 15:19:11 +02:00
|
|
|
|
2019-04-17 06:35:54 +02:00
|
|
|
if(WITH_ALEMBIC_HDF5)
|
|
|
|
set(HDF5_ROOT_DIR ${LIBDIR}/hdf5)
|
|
|
|
find_package_wrapper(HDF5)
|
|
|
|
endif()
|
2016-08-09 15:19:11 +02:00
|
|
|
|
2019-04-17 06:35:54 +02:00
|
|
|
if(NOT ALEMBIC_FOUND OR (WITH_ALEMBIC_HDF5 AND NOT HDF5_FOUND))
|
|
|
|
set(WITH_ALEMBIC OFF)
|
|
|
|
set(WITH_ALEMBIC_HDF5 OFF)
|
|
|
|
endif()
|
2016-08-09 15:19:11 +02:00
|
|
|
endif()
|
|
|
|
|
USD: Introducing a simple USD Exporter
This commit introduces the first version of an exporter to Pixar's
Universal Scene Description (USD) format.
Reviewed By: sergey, LazyDodo
Differential Revision: https://developer.blender.org/D6287
- The USD libraries are built by `make deps`, but not yet built by
install_deps.sh.
- Only experimental support for instancing; by default all duplicated
objects are made real in the USD file. This is fine for exporting a
linked-in posed character, not so much for thousands of pebbles etc.
- The way materials and UV coordinates and Normals are exported is going
to change soon.
- This patch contains LazyDodo's fixes for building on Windows in D5359.
== Meshes ==
USD seems to support neither per-material nor per-face-group
double-sidedness, so we just use the flag from the first non-empty
material slot. If there is no material we default to double-sidedness.
Each UV map is stored on the mesh in a separate primvar. Materials can
refer to these UV maps, but this is not yet exported by Blender. The
primvar name is the same as the UV Map name. This is to allow the
standard name "st" for texture coordinates by naming the UV Map as such,
without having to guess which UV Map is the "standard" one.
Face-varying mesh normals are written to USD. When the mesh has custom
loop normals those are written. Otherwise the poly flag `ME_SMOOTH` is
inspected to determine the normals.
The UV maps and mesh normals take up a significant amount of space, so
exporting them is optional. They're still enabled by default, though.
For comparison: a shot of Spring (03_035_A) is 1.2 GiB when exported
with UVs and normals, and 262 MiB without. We probably have room for
optimisation of written UVs and normals.
The mesh subdivision scheme isn't using the default value 'Catmull
Clark', but uses 'None', indicating we're exporting a polygonal mesh.
This is necessary for USD to understand our normals; otherwise the mesh
is always rendered smooth. In the future we may want to expose this
choice of subdivision scheme to the user, or auto-detect it when we
actually support exporting pre-subdivision meshes.
A possible optimisation could be to inspect whether all polygons are
smooth or flat, and mark the USD mesh as such. This can be added when
needed.
== Animation ==
Mesh and transform animation are now written when passing
`animation=True` to the export operator. There is no inspection of
whether an object is actually animated or not; USD can handle
deduplication of static values for us.
The administration of which timecode to use for the export is left to
the file-format-specific concrete subclasses of
`AbstractHierarchyIterator`; the abstract iterator itself doesn't know
anything about the passage of time. This will allow subclasses for the
frame-based USD format and time-based Alembic format.
== Support for simple preview materials ==
Very simple versions of the materials are now exported, using only the
viewport diffuse RGB, metallic, and roughness.
When there are multiple materials, the mesh faces are stored as geometry
subset and each material is assigned to the appropriate subset. If there
is only one material this is skipped.
The first material if any) is always applied to the mesh itself
(regardless of the existence of geometry subsets), because the Hydra
viewport doesn't support materials on subsets. See
https://github.com/PixarAnimationStudios/USD/issues/542 for more info.
Note that the geometry subsets are not yet time-sampled, so it may break
when an animated mesh changes topology.
Materials are exported as a flat list under a top-level '/_materials'
namespace. This inhibits instancing of the objects using those
materials, so this is subject to change.
== Hair ==
Only the parent strands are exported, and only with a constant colour.
No UV coordinates, no information about the normals.
== Camera ==
Only perspective cameras are supported for now.
== Particles ==
Particles are only written when they are alive, which means that they
are always visible (there is currently no code that deals with marking
them as invisible outside their lifespan).
Particle-system-instanced objects are exported by suffixing the object
name with the particle's persistent ID, giving each particle XForm a
unique name.
== Instancing/referencing ==
This exporter has experimental support for instancing/referencing.
Dupli-object meshes are now written to USD as references to the original
mesh. This is still very limited in correctness, as there are issues
referencing to materials from a referenced mesh.
I am still committing this, as it gives us a place to start when
continuing the quest for proper instancing in USD.
== Lights ==
USD does not directly support spot lights, so those aren't exported yet.
It's possible to add this in the future via the UsdLuxShapingAPI. The
units used for the light intensity are also still a bit of a mystery.
== Fluid vertex velocities ==
Currently only fluid simulations (not meshes in general) have explicit
vertex velocities. This is the most important case for exporting
velocities, though, as the baked mesh changes topology all the time, and
thus computing the velocities at import time in a post-processing step
is hard.
== The Building Process ==
- USD is built as monolithic library, instead of 25 smaller libraries.
We were linking all of them as 'whole archive' anyway, so this doesn't
affect the final file size. It does, however, make life easier with
respect to linking order, and handling upstream changes.
- The JSON files required by USD are installed into datafiles/usd; they
are required on every platform. Set the `PXR_PATH_DEBUG` to any value
to have the USD library print the paths it uses to find those files.
- USD is patched so that it finds the aforementioned JSON files in a path
that we pass to it from Blender.
- USD is patched to have a `PXR_BUILD_USD_TOOLS` CMake option to disable
building the tools in its `bin` directory. This is sent as a pull
request at https://github.com/PixarAnimationStudios/USD/pull/1048
2019-12-13 10:27:40 +01:00
|
|
|
if(WITH_USD)
|
|
|
|
find_package_wrapper(USD)
|
|
|
|
|
|
|
|
if(NOT USD_FOUND)
|
|
|
|
set(WITH_USD OFF)
|
|
|
|
endif()
|
|
|
|
endif()
|
|
|
|
|
2016-08-09 15:19:11 +02:00
|
|
|
if(WITH_BOOST)
|
2019-04-17 06:35:54 +02:00
|
|
|
# uses in build instructions to override include and library variables
|
|
|
|
if(NOT BOOST_CUSTOM)
|
|
|
|
if(WITH_STATIC_LIBS)
|
|
|
|
set(Boost_USE_STATIC_LIBS ON)
|
|
|
|
endif()
|
|
|
|
set(Boost_USE_MULTITHREADED ON)
|
|
|
|
set(__boost_packages filesystem regex thread date_time)
|
|
|
|
if(WITH_CYCLES_OSL)
|
|
|
|
if(NOT (${OSL_LIBRARY_VERSION_MAJOR} EQUAL "1" AND ${OSL_LIBRARY_VERSION_MINOR} LESS "6"))
|
|
|
|
list(APPEND __boost_packages wave)
|
|
|
|
else()
|
|
|
|
endif()
|
|
|
|
endif()
|
|
|
|
if(WITH_INTERNATIONAL)
|
|
|
|
list(APPEND __boost_packages locale)
|
|
|
|
endif()
|
|
|
|
if(WITH_CYCLES_NETWORK)
|
|
|
|
list(APPEND __boost_packages serialization)
|
|
|
|
endif()
|
|
|
|
if(WITH_OPENVDB)
|
|
|
|
list(APPEND __boost_packages iostreams)
|
|
|
|
endif()
|
|
|
|
list(APPEND __boost_packages system)
|
|
|
|
find_package(Boost 1.48 COMPONENTS ${__boost_packages})
|
|
|
|
if(NOT Boost_FOUND)
|
|
|
|
# try to find non-multithreaded if -mt not found, this flag
|
|
|
|
# doesn't matter for us, it has nothing to do with thread
|
|
|
|
# safety, but keep it to not disturb build setups
|
|
|
|
set(Boost_USE_MULTITHREADED OFF)
|
|
|
|
find_package(Boost 1.48 COMPONENTS ${__boost_packages})
|
|
|
|
endif()
|
|
|
|
unset(__boost_packages)
|
|
|
|
if(Boost_USE_STATIC_LIBS AND WITH_BOOST_ICU)
|
|
|
|
find_package(IcuLinux)
|
|
|
|
endif()
|
|
|
|
mark_as_advanced(Boost_DIR) # why doesn't boost do this?
|
|
|
|
endif()
|
|
|
|
|
|
|
|
set(BOOST_INCLUDE_DIR ${Boost_INCLUDE_DIRS})
|
|
|
|
set(BOOST_LIBRARIES ${Boost_LIBRARIES})
|
|
|
|
set(BOOST_LIBPATH ${Boost_LIBRARY_DIRS})
|
|
|
|
set(BOOST_DEFINITIONS "-DBOOST_ALL_NO_LIB")
|
CMake: Refactor external dependencies handling
This is a more correct fix to the issue Brecht was fixing in D6600.
While the fix in that patch worked fine for linking it broke ASAN
runtime under some circumstances.
For example, `make full debug developer` would compile, but trying
to start blender will cause assert failure in ASAN (related on check
that ASAN is not running already).
Top-level idea: leave it to CMake to keep track of dependency graph.
The root of the issue comes to the fact that target like "blender" is
configured to use a lot of static libraries coming from Blender sources
and to use external static libraries. There is nothing which ensures
order between blender's and external libraries. Only order of blender
libraries is guaranteed.
It was possible that due to a cycle or other circumstances some of
blender libraries would have been passed to linker after libraries
it uses, causing linker errors.
For example, this order will likely fail:
libbf_blenfont.a libfreetype6.a libbf_blenfont.a
This change makes it so blender libraries are explicitly provided
their dependencies to an external libraries, which allows CMake to
ensure they are always linked against them.
General rule here: if bf_foo depends on an external library it is
to be provided to LIBS for bf_foo.
For example, if bf_blenkernel depends on opensubdiv then LIBS in
blenkernel's CMakeLists.txt is to include OPENSUBDIB_LIBRARIES.
The change is made based on searching for used include folders
such as OPENSUBDIV_INCLUDE_DIRS and adding corresponding libraries
to LIBS ion that CMakeLists.txt. Transitive dependencies are not
simplified by this approach, but I am not aware of any downside of
this: CMake should be smart enough to simplify them on its side.
And even if not, this shouldn't affect linking time.
Benefit of not relying on transitive dependencies is that build
system is more robust towards future changes. For example, if
bf_intern_opensubiv is no longer depends on OPENSUBDIV_LIBRARIES
and all such code is moved to bf_blenkernel this will not break
linking.
The not-so-trivial part is change to blender_add_lib (and its
version in Cycles). The complexity is caused by libraries being
provided as a single list argument which doesn't allow to use
different release and debug libraries on Windows. The idea is:
- Have every library prefixed as "optimized" or "debug" if
separation is needed (non-prefixed libraries will be considered
"generic").
- Loop through libraries passed to function and do simple parsing
which will look for "optimized" and "debug" words and specify
following library to corresponding category.
This isn't something particularly great. Alternative would be to
use target_link_libraries() directly, which sounds like more code
but which is more explicit and allows to have more flexibility
and control comparing to wrapper approach.
Tested the following configurations on Linux, macOS and Windows:
- make full debug developer
- make full release developer
- make lite debug developer
- make lite release developer
NOTE: Linux libraries needs to be compiled with D6641 applied,
otherwise, depending on configuration, it's possible to run into
duplicated zlib symbols error.
Differential Revision: https://developer.blender.org/D6642
2020-01-20 18:36:19 +01:00
|
|
|
|
|
|
|
if(Boost_USE_STATIC_LIBS AND WITH_BOOST_ICU)
|
|
|
|
find_package(IcuLinux)
|
|
|
|
list(APPEND BOOST_LIBRARIES ${ICU_LIBRARIES})
|
|
|
|
endif()
|
2016-08-09 15:19:11 +02:00
|
|
|
endif()
|
|
|
|
|
|
|
|
if(WITH_OPENIMAGEIO)
|
2019-04-17 06:35:54 +02:00
|
|
|
find_package_wrapper(OpenImageIO)
|
|
|
|
if(NOT OPENIMAGEIO_PUGIXML_FOUND AND WITH_CYCLES_STANDALONE)
|
|
|
|
find_package_wrapper(PugiXML)
|
|
|
|
else()
|
|
|
|
set(PUGIXML_INCLUDE_DIR "${OPENIMAGEIO_INCLUDE_DIR/OpenImageIO}")
|
|
|
|
set(PUGIXML_LIBRARIES "")
|
|
|
|
endif()
|
|
|
|
|
|
|
|
set(OPENIMAGEIO_LIBRARIES
|
|
|
|
${OPENIMAGEIO_LIBRARIES}
|
|
|
|
${PNG_LIBRARIES}
|
|
|
|
${JPEG_LIBRARIES}
|
|
|
|
${ZLIB_LIBRARIES}
|
|
|
|
${BOOST_LIBRARIES}
|
|
|
|
)
|
|
|
|
set(OPENIMAGEIO_LIBPATH) # TODO, remove and reference the absolute path everywhere
|
|
|
|
set(OPENIMAGEIO_DEFINITIONS "")
|
|
|
|
|
|
|
|
if(WITH_IMAGE_TIFF)
|
|
|
|
list(APPEND OPENIMAGEIO_LIBRARIES "${TIFF_LIBRARY}")
|
|
|
|
endif()
|
|
|
|
if(WITH_IMAGE_OPENEXR)
|
|
|
|
list(APPEND OPENIMAGEIO_LIBRARIES "${OPENEXR_LIBRARIES}")
|
|
|
|
endif()
|
|
|
|
|
|
|
|
if(NOT OPENIMAGEIO_FOUND)
|
|
|
|
set(WITH_OPENIMAGEIO OFF)
|
|
|
|
message(STATUS "OpenImageIO not found, disabling WITH_CYCLES")
|
|
|
|
endif()
|
2016-08-09 15:19:11 +02:00
|
|
|
endif()
|
|
|
|
|
|
|
|
if(WITH_OPENCOLORIO)
|
2019-04-17 06:35:54 +02:00
|
|
|
find_package_wrapper(OpenColorIO)
|
2016-08-09 15:19:11 +02:00
|
|
|
|
2019-04-17 06:35:54 +02:00
|
|
|
set(OPENCOLORIO_LIBRARIES ${OPENCOLORIO_LIBRARIES})
|
|
|
|
set(OPENCOLORIO_LIBPATH) # TODO, remove and reference the absolute path everywhere
|
|
|
|
set(OPENCOLORIO_DEFINITIONS)
|
2016-08-09 15:19:11 +02:00
|
|
|
|
2019-04-17 06:35:54 +02:00
|
|
|
if(NOT OPENCOLORIO_FOUND)
|
|
|
|
set(WITH_OPENCOLORIO OFF)
|
|
|
|
message(STATUS "OpenColorIO not found")
|
|
|
|
endif()
|
2016-08-09 15:19:11 +02:00
|
|
|
endif()
|
|
|
|
|
2018-11-07 12:58:12 +01:00
|
|
|
if(WITH_CYCLES_EMBREE)
|
2020-02-17 23:44:12 +01:00
|
|
|
find_package(Embree 3.8.0 REQUIRED)
|
2018-11-07 12:58:12 +01:00
|
|
|
endif()
|
|
|
|
|
Compositor: Added denoising node
This node is built on Intel's OpenImageDenoise library.
Other denoisers could be integrated, for example Lukas' Cycles denoiser.
Compositor: Made OpenImageDenoise optional, added CMake and build_env files to find OIDN
Compositor: Fixed some warnings in the denoising operator
build_environment: Updated OpenImageDenoise to 0.8.1
build_environment: Updated OpenImageDenoise in `make deps` for macOS
Reviewers: sergey, jbakker, brecht
Reviewed By: brecht
Subscribers: YAFU, LazyDodo, Zen_YS, slumber, samgreen, tjvoll, yeus, ponomarovmax, getrad, coder.kalyan, vitos1k, Yegor, DeepBlender, kumaran7, Darkfie9825, aliasguru, aafra, ace_dragon, juang3d, pandrodor, cdog, lordodin, jtheninja, mavek, marcog, 5k1n2, Atair, rawalanche, 0o00o0oo, filibis, poor, lukasstockner97
Tags: #compositing
Differential Revision: https://developer.blender.org/D4304
2019-08-14 15:30:26 +02:00
|
|
|
if(WITH_OPENIMAGEDENOISE)
|
|
|
|
find_package_wrapper(OpenImageDenoise)
|
|
|
|
|
|
|
|
if(NOT OPENIMAGEDENOISE_FOUND)
|
|
|
|
set(WITH_OPENIMAGEDENOISE OFF)
|
|
|
|
message(STATUS "OpenImageDenoise not found")
|
|
|
|
endif()
|
|
|
|
endif()
|
|
|
|
|
2016-08-09 15:19:11 +02:00
|
|
|
if(WITH_LLVM)
|
2019-04-17 06:35:54 +02:00
|
|
|
if(EXISTS ${LIBDIR})
|
|
|
|
set(LLVM_STATIC ON)
|
|
|
|
endif()
|
2017-07-31 19:04:18 +02:00
|
|
|
|
2019-04-17 06:35:54 +02:00
|
|
|
find_package_wrapper(LLVM)
|
2016-08-09 15:19:11 +02:00
|
|
|
|
2019-04-17 06:35:54 +02:00
|
|
|
# Symbol conflicts with same UTF library used by OpenCollada
|
|
|
|
if(EXISTS ${LIBDIR})
|
|
|
|
if(WITH_OPENCOLLADA AND (${LLVM_VERSION} VERSION_LESS "4.0.0"))
|
|
|
|
list(REMOVE_ITEM OPENCOLLADA_LIBRARIES ${OPENCOLLADA_UTF_LIBRARY})
|
|
|
|
endif()
|
|
|
|
endif()
|
2018-08-17 12:40:31 +02:00
|
|
|
|
2019-04-17 06:35:54 +02:00
|
|
|
if(NOT LLVM_FOUND)
|
|
|
|
set(WITH_LLVM OFF)
|
|
|
|
message(STATUS "LLVM not found")
|
|
|
|
endif()
|
2016-08-09 15:19:11 +02:00
|
|
|
endif()
|
|
|
|
|
2018-11-26 11:41:38 +01:00
|
|
|
if(WITH_OPENSUBDIV)
|
2019-04-17 06:35:54 +02:00
|
|
|
find_package_wrapper(OpenSubdiv)
|
2016-08-09 15:19:11 +02:00
|
|
|
|
2019-04-17 06:35:54 +02:00
|
|
|
set(OPENSUBDIV_LIBRARIES ${OPENSUBDIV_LIBRARIES})
|
|
|
|
set(OPENSUBDIV_LIBPATH) # TODO, remove and reference the absolute path everywhere
|
2016-08-09 15:19:11 +02:00
|
|
|
|
2019-04-17 06:35:54 +02:00
|
|
|
if(NOT OPENSUBDIV_FOUND)
|
|
|
|
set(WITH_OPENSUBDIV OFF)
|
|
|
|
message(STATUS "OpenSubdiv not found")
|
|
|
|
endif()
|
2016-08-09 15:19:11 +02:00
|
|
|
endif()
|
|
|
|
|
2019-10-09 16:44:29 +02:00
|
|
|
if(WITH_TBB)
|
|
|
|
find_package_wrapper(TBB)
|
|
|
|
endif()
|
|
|
|
|
2020-03-04 16:39:00 +01:00
|
|
|
if(WITH_XR_OPENXR)
|
|
|
|
find_package(XR-OpenXR-SDK)
|
|
|
|
if(NOT XR_OPENXR_SDK_FOUND)
|
|
|
|
message(WARNING "OpenXR-SDK not found, disabling WITH_XR_OPENXR")
|
|
|
|
set(WITH_XR_OPENXR OFF)
|
|
|
|
endif()
|
|
|
|
endif()
|
|
|
|
|
2020-02-20 22:09:14 -07:00
|
|
|
if(EXISTS ${LIBDIR})
|
|
|
|
without_system_libs_end()
|
|
|
|
endif()
|
|
|
|
|
|
|
|
# ----------------------------------------------------------------------------
|
|
|
|
# Build and Link Flags
|
|
|
|
|
2016-08-09 15:19:11 +02:00
|
|
|
# OpenSuse needs lutil, ArchLinux not, for now keep, can avoid by using --as-needed
|
2017-11-30 17:56:01 +11:00
|
|
|
if(HAIKU)
|
2019-04-17 06:35:54 +02:00
|
|
|
list(APPEND PLATFORM_LINKLIBS -lnetwork)
|
2017-11-30 17:56:01 +11:00
|
|
|
else()
|
2019-04-17 06:35:54 +02:00
|
|
|
list(APPEND PLATFORM_LINKLIBS -lutil -lc -lm)
|
2017-11-30 17:56:01 +11:00
|
|
|
endif()
|
2016-08-09 15:19:11 +02:00
|
|
|
|
|
|
|
find_package(Threads REQUIRED)
|
|
|
|
list(APPEND PLATFORM_LINKLIBS ${CMAKE_THREAD_LIBS_INIT})
|
|
|
|
# used by other platforms
|
|
|
|
set(PTHREADS_LIBRARIES ${CMAKE_THREAD_LIBS_INIT})
|
|
|
|
|
|
|
|
if(CMAKE_DL_LIBS)
|
2019-04-17 06:35:54 +02:00
|
|
|
list(APPEND PLATFORM_LINKLIBS ${CMAKE_DL_LIBS})
|
2016-08-09 15:19:11 +02:00
|
|
|
endif()
|
|
|
|
|
|
|
|
if(CMAKE_SYSTEM_NAME MATCHES "Linux")
|
2019-04-17 06:35:54 +02:00
|
|
|
if(NOT WITH_PYTHON_MODULE)
|
|
|
|
# binreloc is linux only
|
|
|
|
set(BINRELOC_INCLUDE_DIRS ${CMAKE_SOURCE_DIR}/extern/binreloc/include)
|
|
|
|
set(WITH_BINRELOC ON)
|
|
|
|
endif()
|
2016-08-09 15:19:11 +02:00
|
|
|
endif()
|
|
|
|
|
|
|
|
# lfs on glibc, all compilers should use
|
|
|
|
add_definitions(-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE64_SOURCE)
|
|
|
|
|
2020-02-06 01:30:26 +11:00
|
|
|
# ----------------------------------------------------------------------------
|
|
|
|
# System Libraries
|
|
|
|
#
|
|
|
|
# Keep last, so indirectly linked libraries don't override our own pre-compiled libs.
|
|
|
|
|
2020-02-20 22:09:14 -07:00
|
|
|
if(WITH_LZO AND WITH_SYSTEM_LZO)
|
|
|
|
find_package_wrapper(LZO)
|
|
|
|
if(NOT LZO_FOUND)
|
|
|
|
message(FATAL_ERROR "Failed finding system LZO version!")
|
|
|
|
endif()
|
|
|
|
endif()
|
|
|
|
|
|
|
|
if(WITH_SYSTEM_EIGEN3)
|
|
|
|
find_package_wrapper(Eigen3)
|
|
|
|
if(NOT EIGEN3_FOUND)
|
|
|
|
message(FATAL_ERROR "Failed finding system Eigen3 version!")
|
|
|
|
endif()
|
|
|
|
endif()
|
|
|
|
|
|
|
|
# Jack is intended to use the system library.
|
|
|
|
if(WITH_JACK)
|
|
|
|
find_package_wrapper(Jack)
|
|
|
|
if(NOT JACK_FOUND)
|
|
|
|
set(WITH_JACK OFF)
|
|
|
|
endif()
|
|
|
|
endif()
|
|
|
|
|
|
|
|
# Audio IO
|
|
|
|
if(WITH_SYSTEM_AUDASPACE)
|
|
|
|
find_package_wrapper(Audaspace)
|
|
|
|
if(NOT AUDASPACE_FOUND OR NOT AUDASPACE_C_FOUND)
|
|
|
|
message(FATAL_ERROR "Audaspace external library not found!")
|
|
|
|
endif()
|
|
|
|
endif()
|
|
|
|
|
2020-02-06 01:30:26 +11:00
|
|
|
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()
|
|
|
|
|
|
|
|
# ----------------------------------------------------------------------------
|
|
|
|
# Compilers
|
|
|
|
|
2016-08-09 15:19:11 +02:00
|
|
|
# GNU Compiler
|
|
|
|
if(CMAKE_COMPILER_IS_GNUCC)
|
2019-04-17 06:35:54 +02:00
|
|
|
set(PLATFORM_CFLAGS "-pipe -fPIC -funsigned-char -fno-strict-aliasing")
|
|
|
|
|
|
|
|
if(WITH_LINKER_GOLD)
|
|
|
|
execute_process(
|
|
|
|
COMMAND ${CMAKE_C_COMPILER} -fuse-ld=gold -Wl,--version
|
|
|
|
ERROR_QUIET OUTPUT_VARIABLE LD_VERSION)
|
|
|
|
if("${LD_VERSION}" MATCHES "GNU gold")
|
|
|
|
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -fuse-ld=gold")
|
|
|
|
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fuse-ld=gold")
|
|
|
|
else()
|
|
|
|
message(STATUS "GNU gold linker isn't available, using the default system linker.")
|
|
|
|
endif()
|
|
|
|
unset(LD_VERSION)
|
|
|
|
endif()
|
2016-08-09 15:19:11 +02:00
|
|
|
|
2020-04-27 14:10:56 +10:00
|
|
|
if(WITH_LINKER_LLD)
|
|
|
|
execute_process(
|
|
|
|
COMMAND ${CMAKE_C_COMPILER} -fuse-ld=lld -Wl,--version
|
|
|
|
ERROR_QUIET OUTPUT_VARIABLE LD_VERSION)
|
|
|
|
if("${LD_VERSION}" MATCHES "LLD")
|
|
|
|
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -fuse-ld=lld")
|
|
|
|
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fuse-ld=lld")
|
|
|
|
else()
|
|
|
|
message(STATUS "LLD linker isn't available, using the default system linker.")
|
|
|
|
endif()
|
|
|
|
unset(LD_VERSION)
|
|
|
|
endif()
|
|
|
|
|
2016-08-09 15:19:11 +02:00
|
|
|
# CLang is the same as GCC for now.
|
|
|
|
elseif(CMAKE_C_COMPILER_ID MATCHES "Clang")
|
2019-04-17 06:35:54 +02:00
|
|
|
set(PLATFORM_CFLAGS "-pipe -fPIC -funsigned-char -fno-strict-aliasing")
|
2016-08-09 15:19:11 +02:00
|
|
|
# Intel C++ Compiler
|
|
|
|
elseif(CMAKE_C_COMPILER_ID MATCHES "Intel")
|
2019-04-17 06:35:54 +02:00
|
|
|
# think these next two are broken
|
|
|
|
find_program(XIAR xiar)
|
|
|
|
if(XIAR)
|
|
|
|
set(CMAKE_AR "${XIAR}")
|
|
|
|
endif()
|
|
|
|
mark_as_advanced(XIAR)
|
|
|
|
|
|
|
|
find_program(XILD xild)
|
|
|
|
if(XILD)
|
|
|
|
set(CMAKE_LINKER "${XILD}")
|
|
|
|
endif()
|
|
|
|
mark_as_advanced(XILD)
|
|
|
|
|
|
|
|
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -fp-model precise -prec_div -parallel")
|
|
|
|
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fp-model precise -prec_div -parallel")
|
|
|
|
|
|
|
|
# set(PLATFORM_CFLAGS "${PLATFORM_CFLAGS} -diag-enable sc3")
|
|
|
|
set(PLATFORM_CFLAGS "-pipe -fPIC -funsigned-char -fno-strict-aliasing")
|
|
|
|
set(PLATFORM_LINKFLAGS "${PLATFORM_LINKFLAGS} -static-intel")
|
2016-08-09 15:19:11 +02:00
|
|
|
endif()
|
2020-03-30 21:24:13 +02:00
|
|
|
|
|
|
|
# Avoid conflicts with Mesa llvmpipe, Luxrender, and other plug-ins that may
|
|
|
|
# use the same libraries as Blender with a different version or build options.
|
|
|
|
set(PLATFORM_LINKFLAGS
|
|
|
|
"${PLATFORM_LINKFLAGS} -Wl,--version-script='${CMAKE_SOURCE_DIR}/source/creator/blender.map'"
|
|
|
|
)
|
2020-04-07 03:52:46 +02:00
|
|
|
|
|
|
|
# Don't use position independent executable for portable install since file
|
|
|
|
# browsers can't properly detect blender as an executable then. Still enabled
|
|
|
|
# for non-portable installs as typically used by Linux distributions.
|
|
|
|
if(WITH_INSTALL_PORTABLE)
|
|
|
|
set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -no-pie")
|
|
|
|
endif()
|