15 lines
415 B
CMake
15 lines
415 B
CMake
# Copyright (c) 2021 Dominic Msters
|
|
#
|
|
# This software is released under the MIT License.
|
|
# https://opensource.org/licenses/MIT
|
|
|
|
add_subdirectory(audiogen)
|
|
|
|
# Texture Tool
|
|
function(tool_audio target in)
|
|
add_custom_target(${target}
|
|
COMMAND audiogen "${DAWN_ASSETS_SOURCE_DIR}/${in}" "${DAWN_ASSETS_BUILD_DIR}/${target}"
|
|
COMMENT "Generating audio ${target} from ${in}"
|
|
DEPENDS audiogen
|
|
)
|
|
endfunction() |