From eaa882829a862d0ca0179836e9da82e78dd91629 Mon Sep 17 00:00:00 2001 From: "U-UCLL\\u0121507" Date: Thu, 15 Nov 2018 15:58:29 +0100 Subject: [PATCH] generator expliciet meegeven --- CMakeLists.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) mode change 100644 => 100755 CMakeLists.txt diff --git a/CMakeLists.txt b/CMakeLists.txt old mode 100644 new mode 100755 index 8c0f784..a0b6092 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -4,7 +4,8 @@ cmake_minimum_required(VERSION 3.12) # WARNING: CMAKE_AR and RANLIB didn't use find_program() to scan the PATH yet. # If using CMake < 3.12, consider using an absolute path. https://gitlab.kitware.com/cmake/cmake/merge_requests/1720 SET(CMAKE_SYSTEM_NAME Generic) -SET(CMAKE_C_COMPILER arm-none-eabi-gcc) +SET(CMAKE_GENERATOR "Unix Makefiles") +SET(CMAKE_C_COMPILER arm-none-eabi-gcc) SET(CMAKE_CXX_COMPILER arm-none-eabi-g++) SET(CMAKE_OBJCOPY arm-none-eabi-objcopy) SET(CMAKE_AR arm-none-eabi-ar CACHE FILEPATH "Archiver")