Enable dynamic sound library loading so that "make release" produces binaries that are as portable as buildbot builds. Remove unnecessary linker flags that are already set by default, and don't specifiy explicit lib directoy since it is also found by default. Pull Request: https://projects.blender.org/blender/blender/pulls/113360
15 lines
447 B
CMake
15 lines
447 B
CMake
# SPDX-FileCopyrightText: 2015-2022 Blender Authors
|
|
#
|
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
# ######## Global feature set settings ########
|
|
|
|
include("${CMAKE_CURRENT_LIST_DIR}/../../cmake/config/blender_release.cmake")
|
|
|
|
message(STATUS "Building in Rocky 8 Linux 64bit environment")
|
|
|
|
# ######## Linux-specific build options ########
|
|
# Options which are specific to Linux-only platforms
|
|
|
|
set(WITH_DOC_MANPAGE OFF CACHE BOOL "" FORCE)
|