From 95363f375e401ae2b85ce36712440c4f58749f3f Mon Sep 17 00:00:00 2001 From: jake-g00dwin Date: Mon, 20 Jul 2026 20:08:49 -0700 Subject: [PATCH] Updated the template src cmake file. --- src/CMakeLists.txt | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index f9696af..2027e84 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -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 + #??? +) + +