# Copyright (c) 2022 Dominic Masters
# 
# This software is released under the MIT License.
# https://opensource.org/licenses/MIT

# Check for build target, or default
if(WIN32)
  set(DAWN_BUILD_HOST "build-host-win32")
elseif(UNIX AND NOT APPLE)
  set(DAWN_BUILD_HOST "build-host-linux64")
endif()

add_subdirectory(${DAWN_BUILD_HOST})