Updated the template src cmake file.

This commit is contained in:
Jake Goodwin 2026-07-20 20:08:49 -07:00
parent 40f86d9f06
commit 95363f375e

View file

@ -1,3 +1,14 @@
add_executable(main
add_executable(${PROJECT_NAME}
main.c
)
target_include_directories(${PROJECT_NAME} PUBLIC
${CMAKE_SOURCE_DIR}
${CMAKE_SOURCE_DIR}/inc/
)
target_link_libraries(${PROJECT_NAME} PRIVATE
#???
)