From 6de3d5533a36f072b4d1ac7d969fd57aad3d8d28 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Samuel=20Thor=C3=A9n?= Date: Tue, 24 Jan 2023 10:35:19 +0100 Subject: [PATCH] Toolchain --- Toolchain_arm.cmake | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 Toolchain_arm.cmake diff --git a/Toolchain_arm.cmake b/Toolchain_arm.cmake new file mode 100644 index 0000000..c6b21e9 --- /dev/null +++ b/Toolchain_arm.cmake @@ -0,0 +1,4 @@ +SET(CMAKE_SYSTEM_NAME Linux) +cmake_minimum_required(VERSION 3.10) +SET(CMAKE_C_COMPILER /usr/bin/arm-linux-gnueabihf-gcc) +SET(CMAKE_CXX_COMPILER /usr/bin/arm-linux-gnueabihf-g++)