cmake_cpputest_template/src/CMakeLists.txt
jake c43df6e576 Setup /src/CmakeLists.txt for variable usage
The cmake file in the source directory is now using the variable project
name.
2024-11-10 06:37:20 -08:00

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")