30 lines
686 B
CMake
30 lines
686 B
CMake
# Copyright (c) 2023 Dominic Msters
|
|
#
|
|
# This software is released under the MIT License.
|
|
# https://opensource.org/licenses/MIT
|
|
|
|
# Tool Level Values
|
|
set(
|
|
DAWN_TOOL_INCLUDES
|
|
${CMAKE_CURRENT_LIST_DIR}
|
|
CACHE INTERNAL ${DAWN_CACHE_TARGET}
|
|
)
|
|
|
|
set(
|
|
DAWN_TOOL_GENERATED_DEPENDENCIES
|
|
CACHE INTERNAL ${DAWN_CACHE_TARGET}
|
|
)
|
|
|
|
# Tool-Utils
|
|
set(DAWN_TOOL_SOURCES "")
|
|
include(util/CMakeLists.txt)
|
|
include(util/parser/CMakeLists.txt)
|
|
include(util/generator/CMakeLists.txt)
|
|
|
|
# Tools
|
|
add_subdirectory(prefabtool)
|
|
add_subdirectory(propertytool)
|
|
add_subdirectory(scenetool)
|
|
add_subdirectory(texturetool)
|
|
add_subdirectory(truetypetool)
|
|
add_subdirectory(vnscenetool) |