# Copyright (c) 2022 Dominic Masters # # This software is released under the MIT License. # https://opensource.org/licenses/MIT # Set up the executable set(DAWN_TARGET_NAME "DawnOS" CACHE INTERNAL ${DAWN_CACHE_TARGET}) # Build Project add_executable(${DAWN_TARGET_NAME}) # Includes target_include_directories(${DAWN_TARGET_NAME} PUBLIC ${CMAKE_CURRENT_LIST_DIR} ) # Subdirs add_subdirectory(game) add_subdirectory(display)