You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# My guess is that you are on mac and using g++ to compile. For godforsaken reasons, g++ by default is an alias to clang++ forced into some crazy C++98 mode.
| Travis CI |[](https://travis-ci.org/end2endzone/bin2cpp)||
22
21
| Windows Server 2019 |[](https://github.com/end2endzone/bin2cpp/actions/workflows/build_windows.yml)|[](https://github.com/end2endzone/bin2cpp/actions/workflows/build_windows.yml)|
23
22
| Ubuntu 20.04 |[](https://github.com/end2endzone/bin2cpp/actions/workflows/build_linux.yml)|[](https://github.com/end2endzone/bin2cpp/actions/workflows/build_linux.yml)|
24
23
| macOS 10.15 |[](https://github.com/end2endzone/bin2cpp/actions/workflows/build_macos.yml)|[](https://github.com/end2endzone/bin2cpp/actions/workflows/build_macos.yml)|
@@ -86,7 +85,6 @@ The following section shows how to use bin2cpp with code examples:
| --reportedfilepath=<path>| The relative reported path of the File. Path returned when calling method getFilePath() of the File class. Automatically calculated when --dir mode is used.<br>ie: images/DCIM/IMG_0001.jpg |
118
117
| --managerfile=<path>| File name or relative path of the generated C++ header file for the FileManager class.<br>ie: FileManager.h. |
119
118
| --registerfile | Register the generated file to the FileManager class. This flags is automatically set when parameter 'managerfile' is specified. |
119
+
| --dirincludefilter=<value>| Set a positive filter on the input directory to only select files matching the filter. Wildcard characters are accepted. Separate each filter with the character ':'. Valid only when --dir is used. See wildcard characters definition below. |
120
+
| --direxcludefilter=<value>| Set a negative filter on the input directory to skip files matching the filter. Wildcard characters are accepted. Separate each filter with the character ':'. Valid only when --dir is used. See wildcard characters definition below. The exclude filter has precedence over the include filter. |
120
121
| --keepdirs | Keep the directory structure. Forces the output files to have the same directory structure as the input files. Valid only when --dir is used. |
121
122
| --plainoutput | Print the encoded string in plain format to stdout. Useful for scripts and integration with third party application. |
122
123
| --override | Tells bin2cpp to overwrite the destination files. |
123
124
| --noheader | Do not print program header to standard output. |
124
125
| --quiet | Do not log any message to standard output. |
0 commit comments