summaryrefslogtreecommitdiff
path: root/xsd/xsd
AgeCommit message (Collapse)AuthorFilesLines
2023-09-26Recognize C++11 and C++20 keywords for identifier escapingBoris Kolpackov1-1/+44
2023-09-11Add --dep-file optionBoris Kolpackov5-21/+72
In particular, this now allows writing the dependency information to stdout by specifying `-` as this option's value.
2023-09-11Add --file-list-only optionBoris Kolpackov7-101/+183
This option allows only writing the list of C++ files that would be generated without actually generating them.
2023-09-11Exclude dependency file (.d) from --file-list outputBoris Kolpackov1-1/+1
In the --file-list option documentation we say that this is the list of generated C++ files.
2023-09-11Recognize --file-list value `-` as request to write to stdoutBoris Kolpackov3-15/+21
2023-09-11Update copyrightBoris Kolpackov3-29/+27
2023-09-06Make c++11 value default for xsd --std optionKaren Arutyunov4-7/+25
Also add support for c++14, c++17, c++20, and c++23 values and drop passing --std option in tests and examples.
2023-06-27Regenerate options parsing filesKaren Arutyunov2-26/+26
2023-03-20Regenerate options parsing filesKaren Arutyunov4-0/+200
2022-12-01Clean up trailing spaces from generated source codeBoris Kolpackov2-4/+4
2022-12-01Move inline file inclusion after header file epilogueBoris Kolpackov1-8/+19
This makes a difference if the epilogue defines something (e.g., a custom type) that must be defined (rather than just declared) in the inline file.
2022-09-21Use ad hoc rules to compile options.cli filesKaren Arutyunov15-39/+7581
2021-12-10Tweak diagnostics of ad hoc CLI ruleBoris Kolpackov1-0/+1
2021-12-10Add support for `ucc` (upper-camel-case) value in --function-naming optionBoris Kolpackov3-4/+30
2021-12-10Omit instantiating serializers for abstract elements, similar to parsingBoris Kolpackov1-1/+29
2021-12-10Enter abstract elements into substitution mapBoris Kolpackov1-8/+20
We cannot just omit them because they may serve as "links" between the root of the substitution group and non-abstract elements that use these elements as their roots.
2021-10-26Regularize metadataBoris Kolpackov1-2/+4
2021-10-14Remove workaround for ad recipe re-parse issueBoris Kolpackov1-1/+1
2021-10-05Redo CLI compilation using ad hoc recipes/rulesBoris Kolpackov1-36/+44
2021-02-25Fix GCC 'implicitly-declared operator=() is deprecated' warningKaren Arutyunov1-0/+38
Note that since c++11 the generation of the implicit copy assignment operator is deprecated for a class with a user-defined copy constructor.
2021-02-25Various fixesKaren Arutyunov12-33/+67
2021-02-25Switch to build2Karen Arutyunov103-0/+46046