15 lines
399 B
CMake
15 lines
399 B
CMake
# Copyright (c) 2022 Dominic Masters
|
|
#
|
|
# This software is released under the MIT License.
|
|
# https://opensource.org/licenses/MIT
|
|
|
|
# Defines
|
|
if(CMAKE_BUILD_TYPE STREQUAL "Debug")
|
|
set(DAWN_DEBUG_BUILD true CACHE INTERNAL ${DAWN_CACHE_TARGET})
|
|
else()
|
|
set(DAWN_DEBUG_BUILD false CACHE INTERNAL ${DAWN_CACHE_TARGET})
|
|
endif()
|
|
|
|
# Includes
|
|
add_subdirectory(hosts)
|
|
add_subdirectory(targets) |