Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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`

Expand Down
2 changes: 1 addition & 1 deletion RTEMSPreProjectConfig.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down