Skip to content

Commit

Permalink
tutorials/cmake/commands.md: example with excluding modules
Browse files Browse the repository at this point in the history
  • Loading branch information
miconda committed Dec 7, 2024
1 parent 069ea5c commit db4faaa
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions docs/tutorials/cmake/commands.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ cd build
| `make cfg` | `cmake ..` | Generate config files for the build system |
| `make PREFIX=/tmp/kamailio-dev cfg ` | `cmake -DCMAKE_INSTALL_PREFIX=/tmp/kamailio-dev ..` | Specify installation path prefix |

Check failure on line 26 in docs/tutorials/cmake/commands.md

View workflow job for this annotation

GitHub Actions / check-format

Spaces inside code span elements

docs/tutorials/cmake/commands.md:26:3 MD038/no-space-in-code Spaces inside code span elements [Context: "...PREFIX=/tmp/kamailio-dev cfg `"] https://github.com/DavidAnson/markdownlint/blob/v0.36.1/doc/md038.md
| `make include_modules="app_lua db_mysql" cfg` | `cmake -DINCLUDE_MODULES="app_lua db_mysql" ..` | Specify additional modules to be included in compilation |
| `make exclude_modules="app_lua db_mysql" cfg` | `cmake -DEXCLUDE_MODULES="app_lua db_mysql" ..` | Specify modules to be excluded from compilation |
| `make` | `make kamailio` | Compile `kamailio` binary (the core) |
| `make all` | `make` | Compile everything (core and modules) |
| `make modules modules=src/modules/acc` | `make acc` | Compile `acc` modules (substitute with any other module name) |
Expand Down

0 comments on commit db4faaa

Please sign in to comment.