28 lines
505 B
CMake
28 lines
505 B
CMake
# Copyright (c) 2022 Dominic Masters
|
|
#
|
|
# This software is released under the MIT License.
|
|
# https://opensource.org/licenses/MIT
|
|
|
|
# Libs
|
|
target_link_libraries(${DAWN_TARGET_NAME}
|
|
PUBLIC
|
|
glfw
|
|
glad
|
|
)
|
|
|
|
# Platform variables
|
|
# target_compile_definitions(${DAWN_TARGET_NAME}
|
|
# PUBLIC
|
|
# DAWN_OPENGL_GLSL=true
|
|
# )
|
|
|
|
# Includes
|
|
target_include_directories(${DAWN_TARGET_NAME}
|
|
PUBLIC
|
|
${CMAKE_CURRENT_LIST_DIR}
|
|
)
|
|
|
|
# Subdirs
|
|
add_subdirectory(display)
|
|
add_subdirectory(input)
|
|
add_subdirectory(time) |