15 lines
410 B
CMake
15 lines
410 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
|
|
if(WIN32)
|
|
set(DAWN_BUILD_HOST "build-host-win32")
|
|
elseif(UNIX AND NOT APPLE)
|
|
set(DAWN_BUILD_HOST "build-host-linux")
|
|
elseif(UNIX AND APPLE)
|
|
set(DAWN_BUILD_HOST "build-host-osx")
|
|
endif()
|
|
|
|
add_subdirectory(${DAWN_BUILD_HOST}) |