From 2cc86e0856a0cfb2e6bb6acdba874b6f69a4e60b Mon Sep 17 00:00:00 2001 From: Spacefish <31589589+rmspacefish@users.noreply.github.com> Date: Sat, 27 Feb 2021 11:30:39 +0100 Subject: [PATCH 1/2] Update README.md --- README.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/README.md b/README.md index 3fa00f9..cd11ac4 100644 --- a/README.md +++ b/README.md @@ -19,6 +19,12 @@ Clone this repository. This does not necesarilly have to be in the application r git clone https://github.com/rmspacefish/rtems-cmake.git ``` +If you want to add this repository to another repository, add it as a submodule instead + +```sh +git submodule add https://github.com/rmspacefish/rtems-cmake.git +``` + After that, it is recommended to set the path to the RTEMS CMake support with the following line in the application `CMakeLists.txt` From bf2fe4a5c4f261f2694c6c8c54504ac986eb4cf6 Mon Sep 17 00:00:00 2001 From: Robin Mueller Date: Thu, 4 Mar 2021 20:57:07 +0100 Subject: [PATCH 2/2] small form fix --- RTEMSPreProjectConfig.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/RTEMSPreProjectConfig.cmake b/RTEMSPreProjectConfig.cmake index 2829966..a7b0b15 100644 --- a/RTEMSPreProjectConfig.cmake +++ b/RTEMSPreProjectConfig.cmake @@ -39,7 +39,7 @@ option(RTEMS_VERBOSE "Additional RTEMS CMake configuration information" FALSE) if(NOT DEFINED RTEMS_CONFIG_DIR) message(STATUS - "RTEMS_CONFIG_DIR not set. Assuming the CMake support was " + "RTEMS_CONFIG_DIR not set. Assuming the CMake support was " "cloned in the application source directory.." ) set(RTEMS_CONFIG_DIR ${CMAKE_CURRENT_SOURCE_DIR}/rtems-cmake)