2023-08-16 00:20:26 +10:00
|
|
|
# SPDX-FileCopyrightText: 2015-2022 Blender Authors
|
2023-06-14 22:49:59 +10:00
|
|
|
#
|
2022-02-11 14:23:56 +11:00
|
|
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
|
|
2015-12-02 18:09:06 +05:00
|
|
|
# ######## Global feature set settings ########
|
|
|
|
|
|
2018-08-31 12:32:12 +02:00
|
|
|
include("${CMAKE_CURRENT_LIST_DIR}/../../cmake/config/blender_release.cmake")
|
2015-12-02 18:09:06 +05:00
|
|
|
|
2022-12-15 18:09:40 +11:00
|
|
|
message(STATUS "Building in Rocky 8 Linux 64bit environment")
|
2019-11-06 13:50:43 +01:00
|
|
|
|
2015-12-02 18:09:06 +05:00
|
|
|
# ######## Linux-specific build options ########
|
|
|
|
|
# Options which are specific to Linux-only platforms
|
2019-10-09 09:50:58 +02:00
|
|
|
|
2015-12-02 18:09:06 +05:00
|
|
|
set(WITH_DOC_MANPAGE OFF CACHE BOOL "" FORCE)
|
2024-08-14 17:00:48 +02:00
|
|
|
set(WITH_CYCLES_TEST_OSL ON CACHE BOOL "" FORCE)
|
2024-09-24 14:35:24 +02:00
|
|
|
|
2024-11-08 11:05:38 +01:00
|
|
|
set(HIPRT_COMPILER_PARALLEL_JOBS 6 CACHE STRING "" FORCE)
|
2024-11-15 18:12:52 +01:00
|
|
|
set(SYCL_OFFLINE_COMPILER_PARALLEL_JOBS 6 CACHE STRING "" FORCE)
|
|
|
|
|
|
|
|
|
|
set(WITH_LINUX_OFFICIAL_RELEASE_TESTS ON CACHE BOOL "" FORCE)
|
2024-12-24 11:55:29 +01:00
|
|
|
|
|
|
|
|
# Validate that some python scripts in out `build_files` and `docs` directories
|
|
|
|
|
# can be used with the builder's system python.
|
|
|
|
|
set(WITH_SYSTEM_PYTHON_TESTS ON CACHE BOOL "" FORCE)
|
|
|
|
|
set(TEST_SYSTEM_PYTHON_EXE "/usr/bin/python3.6" CACHE PATH "" FORCE)
|