* Replace license text in headers with SPDX identifiers. * Remove specific license info from outdated readme.txt, instead leave details to the source files. * Add list of SPDX license identifiers used, and corresponding license texts. * Update copyright dates while we're at it. Ref D14069, T95597
35 lines
396 B
CMake
35 lines
396 B
CMake
# SPDX-License-Identifier: Apache-2.0
|
|
# Copyright 2011-2022 Blender Foundation
|
|
|
|
set(INC
|
|
..
|
|
)
|
|
|
|
set(INC_SYS
|
|
|
|
)
|
|
|
|
set(SRC
|
|
dice.cpp
|
|
patch.cpp
|
|
split.cpp
|
|
patch_table.cpp
|
|
)
|
|
|
|
set(SRC_HEADERS
|
|
dice.h
|
|
patch.h
|
|
patch_table.h
|
|
split.h
|
|
subpatch.h
|
|
)
|
|
|
|
set(LIB
|
|
|
|
)
|
|
|
|
include_directories(${INC})
|
|
include_directories(SYSTEM ${INC_SYS})
|
|
|
|
cycles_add_library(cycles_subd "${LIB}" ${SRC} ${SRC_HEADERS})
|