# Copyright (c) 2023 Dominic Masters # # This software is released under the MIT License. # https://opensource.org/licenses/MIT # 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(save) # Assets set(LIMINAL_ASSETS_DIR ${DAWN_ASSETS_DIR}/games/liminal) tool_vnscene(${LIMINAL_ASSETS_DIR}/test.xml) tool_prefab(${LIMINAL_ASSETS_DIR}/VNTextbox.xml) tool_truetype(font_main ${DAWN_ASSETS_DIR}/ark-pixel.ttf) tool_prefab(${LIMINAL_ASSETS_DIR}/prefabs/EthPrefab.xml) tool_texture(texture_eth ${LIMINAL_ASSETS_DIR}/textures/eth.png)