10 lines
365 B
CMake
10 lines
365 B
CMake
# 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} ${HEADERS} ${SOURCES})
|
|
|
|
target_link_libraries(${PROJECT_NAME} src glfw glad_gl_core_33) |