Skip to content

Instantly share code, notes, and snippets.

View ORDL-AMF's full-sized avatar

Aaron Ferguson ORDL-AMF

  • Open Research and Development Laboratories
  • Pennsylvania, USA
  • 13:09 (UTC -04:00)
View GitHub Profile
@elmot
elmot / CMakeLists.txt
Last active June 17, 2025 07:39
CMakeLists.txt template for ARM GCC projects
cmake_minimum_required(VERSION 3.17)
set(CMAKE_SYSTEM_NAME Generic)
set(CMAKE_SYSTEM_VERSION 1)
# specify cross compilers and tools
set(CMAKE_C_COMPILER arm-none-eabi-gcc)
set(CMAKE_CXX_COMPILER arm-none-eabi-g++)
set(CMAKE_ASM_COMPILER arm-none-eabi-gcc)
set(CMAKE_AR arm-none-eabi-ar)
set(CMAKE_OBJCOPY arm-none-eabi-objcopy)
set(CMAKE_OBJDUMP arm-none-eabi-objdump)