2020-09-15 22:41:12 +03:00
|
|
|
# Copyright (c) Microsoft Corporation. All rights reserved.
|
|
|
|
# SPDX-License-Identifier: MIT
|
|
|
|
#
|
|
|
|
# Sets the cmake project as gcc-arm.
|
|
|
|
#
|
|
|
|
|
2020-09-04 02:46:21 +03:00
|
|
|
set(CMAKE_SYSTEM_NAME Generic)
|
|
|
|
set(CMAKE_SYSTEM_PROCESSOR arm)
|
|
|
|
set(CMAKE_C_COMPILER arm-none-eabi-gcc)
|
|
|
|
set(CMAKE_CXX_COMPILER arm-none-eabi-g++)
|
|
|
|
string(APPEND CMAKE_C_FLAGS_INIT " -mcpu=cortex-m4 -ffreestanding -nostdlib -mthumb")
|