Browse Source

Update rexm.c

pull/5364/head
Ray 2 weeks ago
parent
commit
6f4f4cc508
1 changed files with 3 additions and 3 deletions
  1. +3
    -3
      tools/rexm/rexm.c

+ 3
- 3
tools/rexm/rexm.c View File

@ -1485,9 +1485,9 @@ int main(int argc, char *argv[])
strncpy(exCategory, exName, TextFindIndex(exName, "_")); strncpy(exCategory, exName, TextFindIndex(exName, "_"));
// Skip some examples from building // Skip some examples from building
if ((strcmp(exName, "others") == 0) ||
(strcmp(exName, "core_custom_logging") == 0) ||
(strcmp(exName, "core_window_should_close") == 0)) continue;
if ((strcmp(exName, "core_custom_logging") == 0) ||
(strcmp(exName, "core_window_should_close") == 0) ||
(strcmp(exName, "core_custom_frame_control") == 0)) continue;
LOG("INFO: [%i/%i] Testing example: [%s]\n", i + 1, exBuildListCount, exName); LOG("INFO: [%i/%i] Testing example: [%s]\n", i + 1, exBuildListCount, exName);

Loading…
Cancel
Save