12 lines
353 B
CMake
12 lines
353 B
CMake
# Copyright (c) 2025 Dominic Masters
|
|
#
|
|
# This software is released under the MIT License.
|
|
# https://opensource.org/licenses/MIT
|
|
|
|
if(DUSK_TARGET_GAME STREQUAL "rpg")
|
|
add_subdirectory(rpg)
|
|
elseif(DUSK_TARGET_GAME STREQUAL "minesweeper")
|
|
add_subdirectory(minesweeper)
|
|
else()
|
|
message(FATAL_ERROR "Unknown game specified: ${DUSK_TARGET_GAME}")
|
|
endif() |