28 lines
410 B
CMake
28 lines
410 B
CMake
# Copyright (c) 2025 Dominic Masters
|
|
#
|
|
# This software is released under the MIT License.
|
|
# https://opensource.org/licenses/MIT
|
|
|
|
# Libs
|
|
|
|
# Includes
|
|
target_include_directories(${DUSK_LIBRARY_TARGET_NAME}
|
|
PUBLIC
|
|
${CMAKE_CURRENT_LIST_DIR}
|
|
)
|
|
|
|
# Sources
|
|
|
|
# Main Binary Source
|
|
target_sources(${DUSK_BINARY_TARGET_NAME}
|
|
PRIVATE
|
|
main.cpp
|
|
sdl_starter.cpp
|
|
sdl_assets_loader.cpp
|
|
)
|
|
|
|
# Defs
|
|
|
|
|
|
# Subdirs
|