Skip to content

Commit ed3b5b2

Browse files
committed
Update rexm.c
1 parent 42abcb9 commit ed3b5b2

File tree

1 file changed

+9
-3
lines changed

1 file changed

+9
-3
lines changed

tools/rexm/rexm.c

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
* - add <example_name>
88
* - rename <old_examples_name> <new_example_name>
99
* - remove <example_name>
10+
* - build <example_name>
1011
* - validate
1112
* - update
1213
*
@@ -1261,20 +1262,25 @@ int main(int argc, char *argv[])
12611262
printf("////////////////////////////////////////////////////////////////////////////////////////////\n\n");
12621263

12631264
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");
12651266

1266-
printf("\nOPTIONS:\n\n");
1267+
printf("\COMMANDS:\n\n");
12671268
printf(" help : Provides command-line usage information\n");
12681269
printf(" create <new_example_name> : Creates an empty example, from internal template\n");
12691270
printf(" add <example_name> : Add existing example, category extracted from name\n");
12701271
printf(" Supported categories: core, shapes, textures, text, models\n");
12711272
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");
12731277
printf("\nEXAMPLES:\n\n");
12741278
printf(" > rexm add shapes_custom_stars\n");
12751279
printf(" Add and updates new example provided <shapes_custom_stars>\n\n");
12761280
printf(" > rexm rename core_basic_window core_cool_window\n");
12771281
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");
12781284
} break;
12791285
}
12801286

0 commit comments

Comments
 (0)