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 + #??? +) + +