Dawn/src/dawnhelloworld/CMakeLists.txt
2023-03-14 18:55:10 -07:00

20 lines
412 B
CMake

# Copyright (c) 2023 Dominic Masters
#
# This software is released under the MIT License.
# https://opensource.org/licenses/MIT
# Build Project
add_executable(${DAWN_TARGET_NAME})
# Includes
target_include_directories(${DAWN_TARGET_NAME}
PUBLIC
${CMAKE_CURRENT_LIST_DIR}
)
# Subdirs
add_subdirectory(game)
add_subdirectory(save)
# Assets
tool_bitmapfont(testbitmap bmfont.png 16 16)