8 lines
152 B
CMake
8 lines
152 B
CMake
add_executable(${PROJECT_NAME}
|
|
main.c
|
|
)
|
|
|
|
# Ensure the build rules are defined
|
|
set_target_properties(${PROJECT_NAME} PROPERTIES SUFFIX ".elf")
|
|
|
|
|