From 830ed408e9ce8648b5e701e61898ac54628ae301 Mon Sep 17 00:00:00 2001 From: Alfi Maulana Date: Sat, 14 Jan 2023 17:25:15 +0700 Subject: [PATCH] add compiler flags input usage in `README.md` --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 8e3bbb6..1941a7e 100644 --- a/README.md +++ b/README.md @@ -22,6 +22,8 @@ For more information, see [action.yml](./action.yml) and [GitHub Actions guide]( | `generator` | String | Build system generator of the CMake project. | | `c-compiler` | String | Preferred executable for compiling C language files. | | `cxx-compiler` | String | Preferred executable for compiling CXX 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. | +| `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. | ### Examples