diff --git a/README.md b/README.md index 5a3e5e7..b6e3883 100644 --- a/README.md +++ b/README.md @@ -46,7 +46,7 @@ The chapter descriptions and solutions are located inside `ws-tasks`. It is recommended to start with this workshop. -## Structuring your project and managing third-party dependencies +## Structuring your project and managing third-party dependencies with CMake OBSW usually becomes very complex as more and more features and functionality is added. We need to split the software into smaller dedicated modules as this happens to keep complexity @@ -54,7 +54,7 @@ in check. This workshop shows how this is done with CMake. Another common task is the integration of third-party libraries. In general, this is a painful process in C/C++ with no built-in package management and an archaic header system. This workshop will attempt to alleviate some of the pain by showing how to integrate a CMake compatible library -by example. +by example and how to intgerate a library without CMake support. ## Object Manager and TMTC handling workshop