24 lines
461 B
CMake
24 lines
461 B
CMake
# Copyright (c) 2023 Dominic Masters
|
|
#
|
|
# This software is released under the MIT License.
|
|
# https://opensource.org/licenses/MIT
|
|
|
|
# Includes
|
|
target_include_directories(${DAWN_TARGET_NAME}
|
|
PUBLIC
|
|
${CMAKE_CURRENT_LIST_DIR}
|
|
)
|
|
|
|
# Sources
|
|
target_sources(${DAWN_TARGET_NAME}
|
|
PRIVATE
|
|
dawnrpg.cpp
|
|
)
|
|
|
|
# Subdirs
|
|
add_subdirectory(component)
|
|
add_subdirectory(prefab)
|
|
add_subdirectory(scenes)
|
|
|
|
# Assets
|
|
include("${DAWN_ASSETS_SOURCE_DIR}/dawnrpg/CMakeLists.txt") |