19 lines
573 B
CMake
19 lines
573 B
CMake
# Copyright (c) 2022 Dominic Masters
|
|
#
|
|
# This software is released under the MIT License.
|
|
# https://opensource.org/licenses/MIT
|
|
|
|
# Check for build target, or default. This is pretty much not guaranteed.
|
|
if(NOT DEFINED DAWN_BUILD_TARGET)
|
|
set(DAWN_BUILD_TARGET "target-tools")
|
|
endif()
|
|
|
|
# Now validate we have a build target for real
|
|
if(NOT DEFINED DAWN_BUILD_TARGET)
|
|
message(FATAL_ERROR "You need to define a DAWN_BUILD_TARGET")
|
|
endif()
|
|
|
|
message("Building target ${DAWN_BUILD_TARGET}")
|
|
|
|
# Include the build target
|
|
add_subdirectory(${DAWN_BUILD_TARGET}) |