|
7 | 7 | * - add <example_name>
|
8 | 8 | * - rename <old_examples_name> <new_example_name>
|
9 | 9 | * - remove <example_name>
|
| 10 | +* - build <example_name> |
10 | 11 | * - validate
|
11 | 12 | * - update
|
12 | 13 | *
|
@@ -1261,20 +1262,25 @@ int main(int argc, char *argv[])
|
1261 | 1262 | printf("////////////////////////////////////////////////////////////////////////////////////////////\n\n");
|
1262 | 1263 |
|
1263 | 1264 | printf("USAGE:\n\n");
|
1264 |
| - printf(" > rexm help|create|add|rename|remove <example_name> [<example_rename>]\n"); |
| 1265 | + printf(" > rexm <command> <example_name> [<example_rename>]\n"); |
1265 | 1266 |
|
1266 |
| - printf("\nOPTIONS:\n\n"); |
| 1267 | + printf("\COMMANDS:\n\n"); |
1267 | 1268 | printf(" help : Provides command-line usage information\n");
|
1268 | 1269 | printf(" create <new_example_name> : Creates an empty example, from internal template\n");
|
1269 | 1270 | printf(" add <example_name> : Add existing example, category extracted from name\n");
|
1270 | 1271 | printf(" Supported categories: core, shapes, textures, text, models\n");
|
1271 | 1272 | printf(" rename <old_examples_name> <new_example_name> : Rename an existing example\n");
|
1272 |
| - printf(" remove <example_name> : Remove an existing example\n\n"); |
| 1273 | + printf(" remove <example_name> : Remove an existing example\n"); |
| 1274 | + printf(" build <example_name> : Build example for Desktop and Web platforms\n"); |
| 1275 | + printf(" validate : Validate examples collection, generates report\n"); |
| 1276 | + printf(" update : Validate and update examples collection, generates report\n\n"); |
1273 | 1277 | printf("\nEXAMPLES:\n\n");
|
1274 | 1278 | printf(" > rexm add shapes_custom_stars\n");
|
1275 | 1279 | printf(" Add and updates new example provided <shapes_custom_stars>\n\n");
|
1276 | 1280 | printf(" > rexm rename core_basic_window core_cool_window\n");
|
1277 | 1281 | printf(" Renames and updates example <core_basic_window> to <core_cool_window>\n\n");
|
| 1282 | + printf(" > rexm update\n"); |
| 1283 | + printf(" Validates all examples in collection and updates missing elements\n\n"); |
1278 | 1284 | } break;
|
1279 | 1285 | }
|
1280 | 1286 |
|
|
0 commit comments