replace CXX term with C++ in description

This commit is contained in:
Alfi Maulana 2023-01-14 19:25:38 +07:00
parent 5e43077b06
commit b80acf2bfb
No known key found for this signature in database
GPG Key ID: 2242A64C2A8DF5A4
2 changed files with 2 additions and 2 deletions

View File

@ -21,7 +21,7 @@ For more information, see [action.yml](./action.yml) and [GitHub Actions guide](
| `targets` | Multiple strings | List of build targets. Could be specified more than one. Separate each target with a space or a new line. | | `targets` | Multiple strings | List of build targets. Could be specified more than one. Separate each target with a space or a new line. |
| `generator` | String | Build system generator of the CMake project. | | `generator` | String | Build system generator of the CMake project. |
| `c-compiler` | String | Preferred executable for compiling C language files. | | `c-compiler` | String | Preferred executable for compiling C language files. |
| `cxx-compiler` | String | Preferred executable for compiling CXX language files. | | `cxx-compiler` | String | Preferred executable for compiling C++ language files. |
| `c-flags` | Multiple strings | Additional flags passed when compiling C language files. Could be specified more than one. Separate each flag with a space or a new line. | | `c-flags` | Multiple strings | Additional flags passed when compiling C language files. Could be specified more than one. Separate each flag with a space or a new line. |
| `cxx-flags` | Multiple strings | Additional flags passed when compiling C++ language files. Could be specified more than one. Separate each flag with a space or a new line. | | `cxx-flags` | Multiple strings | Additional flags passed when compiling C++ language files. Could be specified more than one. Separate each flag with a space or a new line. |
| `args` | Multiple strings | Additional arguments passed during the CMake configuration. Could be specified more than one. Separate each target with a space or a new line. | | `args` | Multiple strings | Additional arguments passed during the CMake configuration. Could be specified more than one. Separate each target with a space or a new line. |

View File

@ -23,7 +23,7 @@ inputs:
description: Preferred executable for compiling C language files description: Preferred executable for compiling C language files
required: false required: false
cxx-compiler: cxx-compiler:
description: Preferred executable for compiling CXX language files description: Preferred executable for compiling C++ language files
required: false required: false
c-flags: c-flags:
description: Additional flags passed when compiling C language files description: Additional flags passed when compiling C language files