From 3695cefad3603c0a018d9eabd315edf26ba89fbb Mon Sep 17 00:00:00 2001 From: Rajkumar Kanagaraj Date: Wed, 3 Mar 2021 03:58:55 -0800 Subject: [PATCH] CMake: Update readme for greentea test build procedure - No longer need to create mbed_os.lib and soft link to mbed-os as new --mbed-os-path command-line removes such dependency and creates mbed_build.cmake when passing mbed-os path with that command line argument. --- tools/cmake/README.md | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/tools/cmake/README.md b/tools/cmake/README.md index 34a324f1632..0c95304c005 100644 --- a/tools/cmake/README.md +++ b/tools/cmake/README.md @@ -94,13 +94,9 @@ Install prerequisites suggested in the previous section and follow the below ste For example: kvstore greentea test is dependent on `mbed-storage` and `mbed-storage-filesystemstore` library however you don't need to pass it via `MBED_TEST_LINK_LIBRARIES` as it is already target linked in greentea test CMakeLists.txt, at the same time some libraries and test cases are private to the application and if you want to use it with kvstore test then pass it with `MBED_TEST_LINK_LIBRARIES` command-line argument. -* Run the following command for the test suite to be recognised as a valid Mbed application - ``` - touch mbed-os.lib && ln -s /path/to/mbed-os mbed-os - ``` * Run the following command for the configuration CMake module to be generated ``` - mbedtools configure -t -m + mbedtools configure -t -m --mbed-os-path /path/to/mbed-os ``` * Build the test binary with the full profile ```