| Name | Date | Size | #Lines | LOC | ||
|---|---|---|---|---|---|---|
| .. | - | - | ||||
| src/ | 06-May-2025 | - | 61 | 40 | ||
| subprojects/ | 06-May-2025 | - | 7 | 5 | ||
| test/ | 06-May-2025 | - | 234 | 161 | ||
| meson.build | D | 06-May-2025 | 253 | 13 | 10 | |
| readme.txt | D | 06-May-2025 | 425 | 15 | 9 |
readme.txt
1Example 4 2========= 3 4Close to the simplest possible example of Unity, using only basic features. 5to build this example run "meson setup <build dir name>". 6 7Meson uses the Ninja build system to actually build the code. To start the 8build, simply type the following command. 9 10"ninja -C <build dir name>" 11 12Meson provides native support for running tests. The command to do that is simple. 13 14"meson test -C <build dir name>". 15