14 lines
312 B
CMake
14 lines
312 B
CMake
# SPDX-FileCopyrightText: 2023 Blender Authors
|
|
#
|
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
|
|
# -----------------------------------------------------------------------------
|
|
# Build `datatoc` executable.
|
|
set(SRC
|
|
datatoc.cc
|
|
)
|
|
|
|
# `SRC_DNA_INC` is defined in the parent directory.
|
|
add_executable(datatoc ${SRC})
|