diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index f9696af..e90472c 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -1,3 +1,8 @@ -add_executable(main +add_executable(${PROJECT_NAME} main.c ) + +# Ensure the build rules are defined +set_target_properties(${PROJECT_NAME} PROPERTIES SUFFIX ".elf") + +