Have the submodules working correctly.

This commit is contained in:
2021-09-30 21:38:01 -07:00
parent 7ce46d3e44
commit 88a75e2ddd
15 changed files with 6950 additions and 48 deletions

View File

@ -0,0 +1,14 @@
# Copyright (c) 2021 Dominic Msters
#
# This software is released under the MIT License.
# https://opensource.org/licenses/MIT
file(GLOB_RECURSE SOURCES ${CMAKE_CURRENT_SOURCE_DIR}/*.c)
file(GLOB_RECURSE HEADERS ${CMAKE_CURRENT_SOURCE_DIR}/*.h)
add_executable(${PROJECT_NAME} ${SOURCES})
target_link_libraries(${PROJECT_NAME}
game
glfw
glad
)