From c4345ef1ab0a5b0ec5fb4e9b52f960c50991808d Mon Sep 17 00:00:00 2001
From: yushulx <lingxiao1002@gmail.com>
Date: Mon, 20 May 2024 16:26:21 +0800
Subject: [PATCH] Updated README.md

---
 .github/workflows/cmake.yml | 3 +--
 README.md                   | 2 +-
 2 files changed, 2 insertions(+), 3 deletions(-)

diff --git a/.github/workflows/cmake.yml b/.github/workflows/cmake.yml
index 8751f61..36ceee4 100644
--- a/.github/workflows/cmake.yml
+++ b/.github/workflows/cmake.yml
@@ -81,13 +81,12 @@ jobs:
     - name: Configure CMake
       # Configure CMake in a 'build' subdirectory. `CMAKE_BUILD_TYPE` is only required if you are using a single-configuration generator such as make.
       # See https://cmake.org/cmake/help/latest/variable/CMAKE_BUILD_TYPE.html?highlight=cmake_build_type
-      run: cmake -B ${{github.workspace}}/examples/9.x/command_line/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}}
+      run: cmake -S ${{ github.workspace }}/examples/9.x/command_line -B ${{github.workspace}}/examples/9.x/command_line/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}}
 
     - name: Build
       # Build your program with the given configuration
       run: |
         cmake --build ${{github.workspace}}/examples/9.x/command_line/build --config ${{env.BUILD_TYPE}}
-        cmake --install ${{github.workspace}}/examples/9.x/command_line/build
 
     - name: Test
       working-directory: ${{github.workspace}}/examples/9.x/command_line/dist
diff --git a/README.md b/README.md
index a9235ef..bb1002f 100644
--- a/README.md
+++ b/README.md
@@ -1,4 +1,4 @@
-# Building Barcode and QR Code Reader with C++ and CMake
+# Building 1D/2D Barcode Reader with C++ and CMake
 This repository contains examples demonstrating how to utilize the **Dynamsoft Barcode Reader SDK** to build barcode and QR code detection applications with C++ and CMake on **Windows**, **Linux**, **macOS**, and **Raspberry Pi**.
 
 ## Prerequisites