From 1d08b8a29e580e9866ce7883e4c34412f10a6bf8 Mon Sep 17 00:00:00 2001 From: TheBrokenRail Date: Mon, 4 Dec 2023 20:08:34 -0500 Subject: [PATCH] Update Example Mods --- example-mods/chat-commands/CMakeLists.txt | 2 ++ example-mods/expanded-creative/CMakeLists.txt | 2 ++ example-mods/recipes/CMakeLists.txt | 2 ++ 3 files changed, 6 insertions(+) diff --git a/example-mods/chat-commands/CMakeLists.txt b/example-mods/chat-commands/CMakeLists.txt index 84fef6a..b2c5cfe 100644 --- a/example-mods/chat-commands/CMakeLists.txt +++ b/example-mods/chat-commands/CMakeLists.txt @@ -3,6 +3,8 @@ cmake_minimum_required(VERSION 3.16.0) # Build For ARM set(CMAKE_C_COMPILER arm-linux-gnueabihf-gcc) set(CMAKE_CXX_COMPILER arm-linux-gnueabihf-g++) +set(CMAKE_SYSTEM_NAME "Linux") +set(CMAKE_SYSTEM_PROCESSOR "arm") # Start Project project(chat-commands) diff --git a/example-mods/expanded-creative/CMakeLists.txt b/example-mods/expanded-creative/CMakeLists.txt index 258f3e8..c317ec4 100644 --- a/example-mods/expanded-creative/CMakeLists.txt +++ b/example-mods/expanded-creative/CMakeLists.txt @@ -3,6 +3,8 @@ cmake_minimum_required(VERSION 3.16.0) # Build For ARM set(CMAKE_C_COMPILER arm-linux-gnueabihf-gcc) set(CMAKE_CXX_COMPILER arm-linux-gnueabihf-g++) +set(CMAKE_SYSTEM_NAME "Linux") +set(CMAKE_SYSTEM_PROCESSOR "arm") # Start Project project(expanded-creative) diff --git a/example-mods/recipes/CMakeLists.txt b/example-mods/recipes/CMakeLists.txt index cdf6bce..9e39aed 100644 --- a/example-mods/recipes/CMakeLists.txt +++ b/example-mods/recipes/CMakeLists.txt @@ -3,6 +3,8 @@ cmake_minimum_required(VERSION 3.16.0) # Build For ARM set(CMAKE_C_COMPILER arm-linux-gnueabihf-gcc) set(CMAKE_CXX_COMPILER arm-linux-gnueabihf-g++) +set(CMAKE_SYSTEM_NAME "Linux") +set(CMAKE_SYSTEM_PROCESSOR "arm") # Start Project project(recipes)