From 42dedb750753cb1ed08aef319011e45fd213daf6 Mon Sep 17 00:00:00 2001 From: Alfi Maulana Date: Mon, 23 Jan 2023 15:39:29 +0700 Subject: [PATCH] audit examples in the `README.md` --- README.md | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index 776bee3..cc25a92 100644 --- a/README.md +++ b/README.md @@ -67,21 +67,16 @@ jobs: uses: threeal/cmake-action@latest with: source-dir: submodules - build-dir: submodules/build + build-dir: submodules/out ``` -#### Specify the Build Targets and Additional Options +#### Specify the Build Targets ```yaml - name: Configure and build this project uses: threeal/cmake-action@latest with: - targets: hello_world_test fibonacci_test - c-flags: -Werror - cxx-flags: -Werror - args: | - -DCMAKE_BUILD_TYPE=Debug - -DBUILD_TESTING=ON + targets: hello_mars hello_sun ``` #### Run Unit Tests After Build