13 lines
394 B
CMake
13 lines
394 B
CMake
# Copyright (c) 2025 Dominic Masters
|
|
#
|
|
# This software is released under the MIT License.
|
|
# https://opensource.org/licenses/MIT
|
|
|
|
set(DUSK_GAME_ASSETS_DIR "${CMAKE_CURRENT_SOURCE_DIR}" CACHE INTERNAL ${DUSK_CACHE_TARGET})
|
|
|
|
add_subdirectory(palette)# Palette asset needs to be added before any images.
|
|
|
|
add_subdirectory(config)
|
|
add_subdirectory(entity)
|
|
add_subdirectory(map)
|
|
add_subdirectory(ui) |