11 lines
405 B
CMake
11 lines
405 B
CMake
# Copyright (c) 2021 Dominic Msters
|
|
#
|
|
# This software is released under the MIT License.
|
|
# https://opensource.org/licenses/MIT
|
|
|
|
function(tool_vn_character DEP_NAME IN OUT)
|
|
add_custom_target(${DEP_NAME}
|
|
COMMAND node ${TOOLS_DIR}/vn/character-sheet-generator.js --assets="${ASSETS_DIR}" --root="${ROOT_DIR}" --in="${IN}" --out="${OUT}"
|
|
COMMENT "Adding VN Character ${FILE_NAME}"
|
|
)
|
|
endfunction() |